/* Custom Modern Layout */
body.modern-layout {
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    /* Sleek off-white background */
    overflow: hidden;
    /* Prevent body scroll, we'll scroll inside main content */
    font-family: 'Inter', sans-serif;
}

.app-container {
    display: flex;
    height: 100vh;
    height: 100dvh;
}

/* Sidebar styling */
.modern-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.03);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 10;
}

.modern-sidebar .profile-holder {
    text-align: center;
    margin-bottom: 40px;
}

.modern-sidebar .profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.modern-sidebar .name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.modern-sidebar .role {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0;
}

.modern-sidebar .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.modern-sidebar .nav-menu li {
    margin-bottom: 8px;
}

.modern-sidebar .nav-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modern-sidebar .nav-menu a i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.modern-sidebar .nav-menu a:hover,
.modern-sidebar .nav-menu a.active {
    background: #f4f6f9;
    color: #0d6efd;
    transform: translateX(5px);
}

.modern-sidebar .nav-menu a:hover i,
.modern-sidebar .nav-menu a.active i {
    color: #0d6efd;
}

.modern-sidebar .social-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.modern-sidebar .social-list a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #495057;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-sidebar .social-list a:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.2);
}

/* Main Content styling */
.modern-main-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 60px 80px;
    scroll-behavior: smooth;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Sidebar CTAs & Badge */
.availability-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.availability-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 101, 145, 0.4), transparent);
    animation: glint 1s linear infinite;
}

.status-icon {
    color: #4f6591;
    margin-right: 8px;
    font-size: 0.85rem;
}

@keyframes glint {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.sidebar-ctas {
    width: 100%;
    padding: 0;
    margin-top: auto;
    margin-bottom: 20px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 10px 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sidebar-btn-primary {
    background-color: #4f6591;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(79, 101, 145, 0.3);
}

.sidebar-btn-primary:hover {
    background-color: #3f5277;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 101, 145, 0.4);
}

.sidebar-btn-outline {
    color: #4f6591;
    border: 1.5px solid #4f6591;
    background: transparent;
}

.sidebar-btn-outline:hover {
    background-color: rgba(79, 101, 145, 0.08);
    color: #4f6591;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Fixes for sections inside main layout */
.modern-layout .resume-section {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    margin-bottom: 40px;
    scroll-margin-top: 60px;
    /* Offset for anchor links */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Hide standard hr dividers */
.modern-layout hr {
    display: none;
}


/* Timeline Alignment Polish */
.resume-timeline {
    padding-left: 24px !important;
    /* Fixed padding instead of relative */
}

.resume-timeline::before {
    left: 8px !important;
    /* Perfect line alignment */
}

.resume-timeline-item::before {
    left: -24px !important;
    /* Matches container padding exactly */
    transform: translateX(1px);
    /* Sub-pixel alignment over the line */
}

/* Tech Pills Custom Styling */
.tech-pill {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.tech-pill:hover {
    background-color: #e9ecef;
    color: #212529;
}

.tech-pill.active {
    background-color: #4f6591;
    color: #ffffff;
    border-color: #4f6591;
}

/* Project Link Pills Custom Styling */
.project-link-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(13, 110, 253, 0.1);
    /* Soft tinted background based on sidebar blue */
    color: #0d6efd;
    /* Sidebar blue */
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-link-pill:hover {
    background-color: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.project-link-pill i {
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR TABLETS & MOBILE (Max 991px)
   ========================================================================== */
.mobile-header {
    display: none;
}

.sidebar-overlay {
    display: none;
}

@media (max-width: 991.98px) {
    body.modern-layout {
        overflow: auto;
        /* Enable page scroll */
    }

    .app-container {
        flex-direction: column;
        height: auto;
    }

    /* Mobile Header Styling */
    .mobile-header {
        display: flex;
        align-items: center;
        background: #ffffff;
        padding: 15px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 900;
        width: 100%;
    }

    .mobile-menu-toggle {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #1a1a1a;
        margin-right: 15px;
        cursor: pointer;
        padding: 12px;
        /* Increased from 5px for a larger, safer touch target */
        touch-action: manipulation;
    }

    .mobile-menu-toggle svg {
        pointer-events: none;
    }

    .mobile-header-profile {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-profile-pic {
        border-radius: 50%;
        object-fit: cover;
    }

    .mobile-name {
        font-size: 1.1rem;
        font-weight: 800;
        margin: 0;
        color: #1a1a1a;
        letter-spacing: -0.5px;
    }

    .mobile-role {
        font-size: 0.75rem;
        color: #6c757d;
        font-weight: 600;
    }

    /* Off-Canvas Sidebar Styling */
    .modern-sidebar {
        position: fixed;
        left: -280px;
        width: 280px;
        top: 0;
        height: 100vh;
        height: 100dvh;
        padding: 30px 25px 60px 25px;
        transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1050;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    }

    /* Show the profile inside the off-canvas drawer but scale it down */
    .modern-sidebar .profile-holder {
        display: block;
        margin-bottom: 20px;
    }

    .modern-sidebar .profile-pic {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .modern-sidebar .name {
        font-size: 1.2rem;
    }

    .modern-sidebar .role {
        font-size: 0.75rem;
    }

    /* Ensure Nav is fully visible */
    .modern-sidebar .nav-menu {
        display: block !important;
        margin-bottom: 25px;
    }

    .modern-sidebar.show {
        left: 0;
    }

    /* Overlay */
    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

}

.tech-pill.active {
    background-color: #4f6591;
    color: #ffffff;
    border-color: #4f6591;
}

/* Project Link Pills Custom Styling */
.project-link-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(79, 101, 145, 0.1);
    color: #4f6591;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-link-pill:hover {
    background-color: #4f6591;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 101, 145, 0.3);
}

.project-link-pill i {
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR TABLETS & MOBILE (Max 991px)
   ========================================================================== */
.mobile-header {
    display: none;
}

.sidebar-overlay {
    display: none;
}

@media (max-width: 991.98px) {
    body.modern-layout {
        overflow: auto;
        /* Enable page scroll */
    }

    .app-container {
        flex-direction: column;
        height: auto;
    }

    /* Mobile Header Styling */
    .mobile-header {
        display: flex;
        align-items: center;
        background: #ffffff;
        padding: 15px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 900;
        width: 100%;
    }

    .mobile-menu-toggle {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #1a1a1a;
        margin-right: 15px;
        cursor: pointer;
        padding: 12px;
        /* Increased from 5px for a larger, safer touch target */
        touch-action: manipulation;
    }

    .mobile-menu-toggle svg {
        pointer-events: none;
    }

    .mobile-header-profile {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-profile-pic {
        border-radius: 50%;
        object-fit: cover;
    }

    .mobile-name {
        font-size: 1.1rem;
        font-weight: 800;
        margin: 0;
        color: #1a1a1a;
        letter-spacing: -0.5px;
    }

    .mobile-role {
        font-size: 0.75rem;
        color: #6c757d;
        font-weight: 600;
    }

    /* Off-Canvas Sidebar Styling */
    .modern-sidebar {
        position: fixed;
        left: -280px;
        width: 280px;
        top: 0;
        height: 100vh;
        height: 100dvh;
        padding: 30px 25px 60px 25px;
        transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1050;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    }

    /* Show the profile inside the off-canvas drawer but scale it down */
    .modern-sidebar .profile-holder {
        display: block;
        margin-bottom: 20px;
    }

    .modern-sidebar .profile-pic {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .modern-sidebar .name {
        font-size: 1.2rem;
    }

    .modern-sidebar .role {
        font-size: 0.75rem;
    }

    /* Ensure Nav is fully visible */
    .modern-sidebar .nav-menu {
        display: block !important;
        margin-bottom: 25px;
    }

    .modern-sidebar.show {
        left: 0;
    }

    /* Overlay */
    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .sidebar-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Reset main content container */
    .modern-main-content {
        padding: 15px 10px;
        /* Drastically reduced from 30px 15px */
        overflow-y: visible;
        height: auto;
    }
}

/* ==========================================================================
   Project Rich Media Scroller
   ========================================================================== */
.project-media-scroller {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    /* Elegant Desktop Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* Webkit custom scrollbar for desktop */
.project-media-scroller::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.project-media-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.project-media-scroller::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.project-media-scroller:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
}



.media-item {
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #e9ecef;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    height: 280px;
}

/* Horizontal media (default, 16:9) */
.media-item.has-iframe.media-horizontal {
    width: auto;
    aspect-ratio: 16 / 9;
    max-width: 85vw;
    /* Prevent cut off on mobile */
}

/* If max-width kicks in (mobile), we must let height adjust naturally */
@media (max-width: 768px) {
    .media-item.has-iframe.media-horizontal {
        width: 85vw;
        height: calc(85vw * 9 / 16);
    }

    .media-item.has-iframe.media-vertical {
        height: 220px;
        width: calc(220px * 9 / 16);
    }
}

/* Vertical media (Shorts, mobile screens, 9:16) */
.media-item.has-iframe.media-vertical {
    width: auto;
    aspect-ratio: 9 / 16;
}

.media-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.media-img {
    height: 100%;
    width: auto;
    display: block;
}

.media-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    padding: 16px 16px 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    pointer-events: none;
}

@media (max-width: 768px) {
    .media-item {
        height: 220px;
    }
}

/* ==========================================================================
   Premium Vanilla JS Lightbox
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

#lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

#lightbox-prev:hover,
#lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-close {
    top: 24px;
    right: 24px;
}

#lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {

    #lightbox-prev,
    #lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #lightbox-prev {
        left: 12px;
    }

    #lightbox-next {
        right: 12px;
    }

    #lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}



/* Reduce wasting space in cards on mobile */
@media (max-width: 768px) {
    .modern-layout .resume-section {
        padding: 1.5rem 1rem !important;
    }

    .resume-timeline-item {
        padding-bottom: 2rem !important;
    }

    .resume-section-heading {
        font-size: 1.25rem !important;
    }

    /* Shrink timeline spacing on mobile */
    .resume-timeline {
        padding-left: 14px !important;
        /* Spacing from line to text */
    }

    .resume-timeline::before {
        left: 0px !important;
        /* Line exactly on the left boundary */
    }

    .resume-timeline-item::before {
        left: -16px !important;
        /* Pull dot leftwards across the padding to meet the line */
        width: 8px !important;
        height: 8px !important;
        transform: translateX(-0.5px);
        /* Sub-pixel perfect centering on the 3px line */
        top: 6px;
    }
}


/* ==========================================================================
   Project Media Scroller Buttons
   ========================================================================== */
.project-media-wrapper {
    position: relative;
}

.media-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4f6591;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    opacity: 0;
    /* hidden until hovered on desktop */
}

.project-media-wrapper:hover .media-scroll-btn {
    opacity: 1;
}

/* On mobile, shrink the buttons slightly and keep them always visible */
@media (max-width: 768px) {
    .media-scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        opacity: 0.8 !important;
        /* Always visible on mobile */
    }

    .media-scroll-btn.prev-btn {
        left: -10px;
    }

    .media-scroll-btn.next-btn {
        right: -10px;
    }
}

.media-scroll-btn:hover {
    background: #4f6591;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.media-scroll-btn.prev-btn {
    left: -15px;
}

.media-scroll-btn.next-btn {
    right: -15px;
}


/* View All Card */
.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 101, 145, 0.08) 0%, rgba(79, 101, 145, 0.02) 100%);
    border: 1.5px dashed rgba(79, 101, 145, 0.3);
    aspect-ratio: 16 / 9;
    width: auto;
    color: #4f6591;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.view-all-card:hover {
    background: rgba(79, 101, 145, 0.12);
    transform: translateY(-4px);
    border-style: solid;
    box-shadow: 0 10px 24px rgba(79, 101, 145, 0.15);
}

.view-all-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Preserve newlines in project description */
.resume-timeline-item-desc p,
.gallery-header p {
    white-space: pre-line;
}

/* Sidebar Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    margin-bottom: 8px;
    z-index: 1000;
    display: none;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.custom-dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.custom-dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
}

.custom-dropdown-item i {
    color: #0d6efd;
    width: 20px;
}

.custom-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    padding-left: 24px;
}

#downloadDropdownBtn {
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}


/* --- CUSTOM DIALOG MODAL --- */
.custom-dialog {
    border: none;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 400px;
    width: 90%;
    background: #ffffff;
    margin: auto;
}
.custom-dialog::backdrop {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}
.dialog-content {
    display: flex;
    flex-direction: column;
}
.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}
.dialog-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
}
.dialog-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dialog-close:hover {
    color: #ef4444;
}
.dialog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}
