/* Modern Minimalist Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* High Contrast Palette */
    --bg-main: #f8f9fa;
    --bg-sidebar: #000000;
    --text-on-sidebar: #ffffff;
    --text-main: #111111;
    --text-muted: #6b7280;
    --accent: #000000;
    --accent-hover: #1a1a1a;

    --border-color: #e5e7eb;
    --card-bg: #ffffff;

    --success: #000000;
    --error: #ef4444;

    /* Spacing & Radius */
    --radius: 12px;
    --sidebar-width: 260px;
    --header-height: 90px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body.auth-page {
    padding: 12px;
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    color: var(--text-on-sidebar);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 24px;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.logo i {
    font-size: 24px;
    background-color: var(--text-on-sidebar);
    color: var(--bg-sidebar);
    padding: 8px;
    border-radius: 8px;
}

.logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-item i {
    font-size: 20px;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-item.active {
    background-color: #ffffff;
    color: #000000;
}

/* Sidebar Bottom */
.sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.user-info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
}

.user-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.download-mini-btn {
    background-color: #fff;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    padding: 6px;
    display: flex;
    border-radius: 6px;
    transition: transform 0.2s;
}

.download-mini-btn:hover {
    transform: scale(1.1);
}

.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    padding: 12px 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.sidebar-logout:hover {
    color: #ff4d4d;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
    display: none;
}

.sidebar-overlay {
    display: none;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 40px 60px;
    max-width: 1400px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.header-title h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.header-title p {
    color: var(--text-muted);
}

.sheet-badge {
    background-color: #e6fcf5;
    color: #0ca678;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sheet-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #0ca678;
    border-radius: 50%;
}

/* Card Styles */
.card {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

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

.card-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h2 {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Layout */
.form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.group-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.01em;
}

input,
select {
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-main);
}

input:focus,
select:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

input[readonly] {
    background-color: #f1f1f1;
    color: #888;
    cursor: not-allowed;
}

/* Calculations Highlight */
.form-section.highlight {
    background-color: #000;
    color: #fff;
    padding: 32px;
    border-radius: var(--radius);
    margin-top: 12px;
}

.form-section.highlight .group-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.form-section.highlight label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.calc-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 20px !important;
    padding: 16px !important;
    height: auto !important;
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-toggle {
    width: 100%;
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    border-radius: 8px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    z-index: 50;
    margin-top: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
}

.custom-select.open .custom-select-menu {
    display: block;
}

.custom-select-search {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-family: inherit;
    outline: none;
}

.custom-select-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-select-option {
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
}

.custom-select-option:hover {
    background-color: #000;
    color: #fff;
}

.info-tag {
    font-size: 12px;
    color: var(--text-muted);
    background: none !important;
    padding: 0 !important;
    margin-top: 6px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none !important;
}

.mini-tag {
    font-size: 11px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 4px !important;
    color: var(--text-muted) !important;
    font-weight: 400;
}

.info-tag-success {
    font-size: 13px;
    color: #0ca678;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 8px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Response Message */
.form-actions {
    margin-top: 20px;
}

.submit-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.submit-btn:hover {
    background-color: #222;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Response Message */
.response-message {
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    animation: reportStatusFadeIn 0.2s ease;
    width: max-content;
    max-width: min(560px, 100%);
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
}

.response-message.success {
    background: linear-gradient(135deg, #ecfdf3 0%, #f4fff8 100%);
    color: #14532d;
    border-color: #86efac;
    border-left: 5px solid #16a34a;
}

.response-message.error {
    background: linear-gradient(135deg, #fef2f2 0%, #fff7f7 100%);
    color: #991b1b;
    border-color: #fca5a5;
    border-left: 5px solid #dc2626;
}

.response-message.success::before,
.response-message.error::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin-right: 12px;
}

.response-message.success::before {
    content: '✓';
    background: #16a34a;
}

.response-message.error::before {
    content: '!';
    background: #dc2626;
}

/* Spreadsheet Section Specifics */
.spread {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sheet-tabs {
    display: flex;
    gap: 8px;
    background-color: #f1f1f1;
    padding: 4px;
    border-radius: 10px;
}

.sheet-tab {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sheet-tab.active {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contractor-select-wrap {
    align-items: center;
    gap: 8px;
}

.contractor-select-wrap label {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.contractor-select {
    min-width: 180px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    background: #fff;
}

.update-btn {
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.loading-indicator {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    animation: reportStatusFadeIn 0.2s ease;
}

.loading-indicator::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 50%;
}

.loading-indicator.is-loading {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.loading-indicator.is-loading::before {
    border: 2px solid #93c5fd;
    border-top-color: #1d4ed8;
    animation: reportSpin 0.8s linear infinite;
}

.loading-indicator.is-success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #166534;
}

.loading-indicator.is-success::before {
    content: '✓';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: #16a34a;
    color: #fff;
}

.loading-indicator.is-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.loading-indicator.is-error::before {
    content: '!';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: #dc2626;
    color: #fff;
}

@keyframes reportSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes reportStatusFadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.iframe-wrapper {
    width: 100%;
    height: calc(100vh - 300px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background-color: #fff;
    z-index: 5;
    pointer-events: auto;
}

/* User Badges & Pills */
.user-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 8px;
}

.badge-admin {
    background-color: #000;
    color: #fff;
}

.badge-setup {
    background-color: #e3f2fd;
    color: #1976d2;
}

/* User List on Admin Page */
.user-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.user-list-item:last-child {
    border-bottom: none;
}

.user-meta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-meta-id {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.user-meta-name {
    font-size: 12px;
    color: var(--text-muted);
}

.user-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.action-btn:hover {
    color: #000;
}

.action-btn.delete:hover {
    color: #ff4d4d;
}

/* Modal Overlay & Content */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-card {
    background-color: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid #000;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s;
}

.checkbox-item:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Auth / Login Page Specifics */
.auth-page {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.setup-page {
    background:
        radial-gradient(1200px 420px at 50% -120px, rgba(255, 255, 255, 0.08), transparent 60%),
        #000;
}

.auth-card {
    background-color: #fff;
    width: 100%;
    max-width: 440px;
    padding: 64px 48px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e5e7eb;
}

.auth-header {
    margin-bottom: 40px;
}

.auth-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.auth-header p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
}

.error-message {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 16px;
    min-height: 20px;
}

.auth-card .form-layout {
    gap: 24px;
}

.auth-card .form-group {
    text-align: left;
}

.auth-card .form-group label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.auth-card input {
    height: 44px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    box-shadow: none;
}

.auth-card input::placeholder {
    color: #9ca3af;
}

.auth-card input:focus {
    border-color: #111827;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.auth-card .submit-btn {
    margin-top: 10px;
    min-height: 52px;
    border-radius: 12px;
}

.auth-card .response-message {
    margin-top: 2px;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.auth-links {
    margin-top: 32px;
    font-size: 14px;
}

.auth-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: #000;
    text-decoration: underline;
}

/* ========== Tablet & Mobile Responsiveness ========== */
@media (max-width: 1024px) {
    .main-content {
        padding: 32px 24px;
        max-width: 100%;
    }

    .content-header {
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 32px;
    }

    .card {
        padding: 24px;
    }

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

    .sheet-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: var(--sidebar-width);
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        padding: 24px 20px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 16px 12px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
        background: var(--bg-main);
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        cursor: pointer;
        font-size: 20px;
        color: var(--text-main);
    }

    .content-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 24px;
    }

    .header-title h1 {
        font-size: 22px;
    }

    .header-title p {
        font-size: 14px;
    }

    .card {
        padding: 20px 16px;
    }

    .card-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .card-header h2 {
        font-size: 16px;
    }

    .card-header.spread {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .sheet-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 6px;
    }

    .sheet-tab {
        padding: 10px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 16px;
    }

    .filter-group {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-group label {
        width: 100%;
    }

    .contractor-select-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .contractor-select {
        min-width: 0;
        width: 100%;
    }

    .update-btn {
        padding: 12px 16px;
        min-height: 44px;
    }

    .form-grid {
        gap: 16px;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    input,
    select {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
    }

    .submit-btn {
        min-height: 48px;
        padding: 14px 20px;
    }

    .iframe-wrapper {
        min-height: 280px;
    }

    #sheetSection.active .card.full-height {
        padding: 16px;
    }

    .auth-card {
        margin: 16px;
        padding: 24px 20px;
        max-width: 100%;
    }

    .auth-header h1 {
        font-size: 24px;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .update-btn {
        width: 100%;
    }

    .user-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .toast {
        min-width: 0;
        max-width: calc(100vw - 32px);
        left: 16px;
        right: 16px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 12px 10px;
    }

    .header-title h1 {
        font-size: 20px;
    }

    .card {
        padding: 16px 12px;
    }

    .logo span {
        font-size: 18px;
    }

    .nav-item {
        padding: 12px 14px;
        font-size: 14px;
    }

    .auth-card {
        margin: 12px;
        padding: 20px 16px;
    }

    .auth-header h1 {
        font-size: 20px;
    }
}
/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background-color: #fff;
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 14px;
    font-weight: 500;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #0ca678;
}

.toast.error {
    border-left: 4px solid var(--error);
}

.toast.success i {
    color: #0ca678;
}

.toast.error i {
    color: var(--error);
}

/* Modal Footer for Custom Confirm */
.modal-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.submit-btn.secondary:hover {
    background-color: #eee !important;
}
