/* =====================================================
   KanzleiSimple Dokumentation - Stylesheet
   ===================================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Primary Colors (matching KanzleiSimple) */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;

    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Layout */
    --sidebar-width: 280px;
    --header-height: 64px;
    --content-max-width: 800px;

    /* Typography - System Fonts (DSGVO-konform, keine externen Requests) */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-slow: 300ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 2rem);
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.375rem; margin-top: 2rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background-color: var(--gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    color: var(--primary-700);
}

pre {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background-color: var(--gray-800);
    color: var(--gray-100);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

/* =====================================================
   Layout Components
   ===================================================== */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.header__logo:hover {
    text-decoration: none;
}

.header__logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.header__link {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.header__link:hover {
    color: var(--primary-600);
    text-decoration: none;
}

.header__search {
    position: relative;
    margin-left: 1rem;
}

.header__search-input {
    width: 240px;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.header__search-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.header__search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

.header__menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-600);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: white;
    border-right: 1px solid var(--gray-200);
    overflow-y: auto;
    padding: 1.5rem 0;
    z-index: 50;
    transition: transform var(--transition-normal);
}

.sidebar__section {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.sidebar__title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    padding: 0 0.75rem;
    margin-bottom: 0.5rem;
}

.sidebar__nav {
    list-style: none;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all var(--transition-fast);
}

.sidebar__link:hover {
    background-color: var(--gray-100);
    color: var(--gray-900);
    text-decoration: none;
}

.sidebar__link.active {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

.sidebar__link-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.sidebar__sublinks {
    list-style: none;
    padding-left: 2.5rem;
    margin-top: 0.25rem;
}

.sidebar__sublink {
    display: block;
    padding: 0.375rem 0.75rem;
    color: var(--gray-500);
    font-size: 0.8125rem;
    border-left: 2px solid var(--gray-200);
    margin-left: -0.75rem;
    padding-left: 1.5rem;
    transition: all var(--transition-fast);
}

.sidebar__sublink:hover {
    color: var(--gray-700);
    border-color: var(--gray-400);
    text-decoration: none;
}

.sidebar__sublink.active {
    color: var(--primary-600);
    border-color: var(--primary-500);
}

/* Main Content */
.main {
    margin-left: var(--sidebar-width);
    padding-top: var(--header-height);

    /* make main take remaining space so footer can stick to bottom */
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 2rem 2rem 4rem;

    /* allow content to grow and push footer down */
    flex: 1 1 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary-600);
}

.breadcrumb__separator {
    color: var(--gray-400);
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.page-header__title {
    margin-bottom: 0.5rem;
}

.page-header__description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* =====================================================
   UI Components
   ===================================================== */

/* Callout / Alert Boxes */
.callout {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 0.75rem;
}

.callout__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.callout__content {
    flex: 1;
}

.callout__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.callout--info {
    background-color: var(--primary-50);
    border: 1px solid var(--primary-200);
    color: var(--primary-800);
}

.callout--info .callout__icon {
    color: var(--primary-500);
}

.callout--success {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.callout--success .callout__icon {
    color: var(--success);
}

.callout--warning {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.callout--warning .callout__icon {
    color: var(--warning);
}

.callout--error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.callout--error .callout__icon {
    color: var(--error);
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow var(--transition-fast);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card__description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.feature-list__item:last-child {
    border-bottom: none;
}

.feature-list__icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-list__text {
    flex: 1;
}

/* Steps */
.steps {
    counter-reset: step;
    list-style: none;
    margin: 1.5rem 0;
}

.step {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 1.5rem;
    border-left: 2px solid var(--gray-200);
    margin-left: 0.875rem;
}

.step:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -1.125rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.step__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.step__content {
    color: var(--gray-600);
}

/* Keyboard Shortcut */
.kbd {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    box-shadow: 0 1px 0 var(--gray-300);
}

/* Table of Contents */
.toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.toc__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.toc__list {
    list-style: none;
}

.toc__link {
    display: block;
    padding: 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.toc__link:hover {
    color: var(--primary-600);
}

/* Screenshot */
.screenshot {
    margin: 1.5rem 0;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
}

.screenshot__image {
    width: 100%;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.screenshot__caption {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

/* Video Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

tr:hover td {
    background: var(--gray-50);
}

/* Footer */
.footer {
    /* full width across the viewport */
    width: 100%;
    background: var(--gray-900);
    border-top: none;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.03);
}

.footer__content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* If sidebar is present and you want footer content to align with main content, add left-offset on large screens */
@media (min-width: 900px) {
    .footer {
        padding-left: calc(1.5rem + var(--sidebar-width));
        padding-right: 1.5rem;
    }
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__link {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: white;
    text-decoration: none;
}

/* Page Navigation (Prev/Next) */
.page-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.page-nav__link {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.page-nav__link:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
    text-decoration: none;
}

.page-nav__link--next {
    text-align: right;
}

.page-nav__label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.page-nav__title {
    font-weight: 600;
    color: var(--gray-900);
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0.5rem;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition-fast);
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background: var(--gray-50);
    text-decoration: none;
}

.search-result__title {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.search-result__snippet {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }

    .main {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
    }

    .header__menu-btn {
        display: block;
    }

    .header__search-input {
        width: 180px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 56px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .content {
        padding: 1.5rem 1rem 3rem;
    }

    .header__nav {
        display: none;
    }

    .header__search {
        margin-left: auto;
    }

    .header__search-input {
        width: 140px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .page-nav {
        grid-template-columns: 1fr;
    }

    .footer__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    table {
        display: block;
        overflow-x: auto;
    }
}

/* Overlay for mobile sidebar */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Print Styles */
@media print {
    .header,
    .sidebar,
    .footer,
    .page-nav {
        display: none;
    }

    .main {
        margin-left: 0;
    }

    .content {
        max-width: 100%;
        padding: 0;
    }
}
/* =====================================================
   Lightbox / Image Modal
   ===================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-in-out;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox__image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10001;
    color: #000;
}

.lightbox__close:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Make screenshot images clickable */
.screenshot__image {
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.screenshot__image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =====================================================
   Disclaimer Banner
   ===================================================== */
.disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer__content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer__icon {
    width: 24px;
    height: 24px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer__text {
    flex: 1;
}

.disclaimer__title {
    margin: 0 0 0.5rem 0;
    color: #92400e;
    font-size: 1.1rem;
    font-weight: 600;
}

.disclaimer__message {
    margin: 0;
    color: #b45309;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =====================================================
   Color Utilities for Card Icons
   ===================================================== */
.icon-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.icon-blue {
    background-color: #eff6ff;
    color: #2563eb;
}

.icon-green {
    background-color: #f0fdf4;
    color: #16a34a;
}

.icon-purple {
    background-color: #faf5ff;
    color: #9333ea;
}

.icon-yellow {
    background-color: #fef3c7;
    color: #d97706;
}

/* =====================================================
   Spacing Utilities
   ===================================================== */
.mt-1rem {
    margin-top: 1rem;
}

.mt-15rem {
    margin-top: 1.5rem;
}

.mt-2rem {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-05rem {
    margin-bottom: 0.5rem;
}

.text-no-decoration {
    text-decoration: none;
}

/* =====================================================
   Paragraph Utilities
   ===================================================== */
.p-mb-0 {
    margin-bottom: 0;
}

.p-small {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.p-small-list {
    margin-top: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* =====================================================
   Flex Utilities
   ===================================================== */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   Text Alignment Utilities
   ===================================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* =====================================================
   Margin Utilities (Extended)
   ===================================================== */
.m-0 {
    margin: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-0 {
    padding: 0;
}

/* =====================================================
   Gradient Backgrounds
   ===================================================== */
.bg-gradient-blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
}

.bg-gradient-yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
}

.bg-gradient-amber {
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
}

/* =====================================================
   Padding Utilities
   ===================================================== */
.p-2rem {
    padding: 2rem;
}

.p-4rem {
    padding: 4rem;
}

.px-2rem {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4rem {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* =====================================================
   SVG/Icon Utilities
   ===================================================== */
.svg-64 {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.svg-24 {
    width: 24px;
    height: 24px;
    margin: 0 auto 1rem;
}

.svg-3rem {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

/* =====================================================
   Text Color Utilities
   ===================================================== */
.text-red-900 {
    color: #7f1d1d;
}

.text-red-800 {
    color: #991b1b;
}

.text-blue-900 {
    color: #1e3a8a;
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-green-600 {
    color: #16a34a;
}

/* =====================================================
   Font Weight Utilities
   ===================================================== */
.font-bold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* =====================================================
   Font Size Utilities
   ===================================================== */
.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.1rem;
}

.text-2xl {
    font-size: 1.75rem;
}

/* =====================================================
   Line Height Utilities
   ===================================================== */
.leading-normal {
    line-height: 1.5;
}

/* =====================================================
   Additional Margin & Padding Utilities
   ===================================================== */
.mb-0 {
    margin-bottom: 0 !important;
}

.mt-1rem {
    margin-top: 1rem;
}

.mt-05rem {
    margin-top: 0.5rem;
}

.mt-2rem {
    margin-top: 2rem;
}