
.danger-btn {
    background: linear-gradient( 135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 14px 24px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(239,68,68,.25);
    transition: all .2s ease;
    cursor:pointer
}

    .danger-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 32px rgba(239,68,68,.35);
    }


.secondary-btn {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 16px;
    cursor: pointer
}

/** {
    box-sizing: border-box;
}*/

html,
body,
.main-layout {
    overflow-x: hidden;
    max-width: 100%;
    background: none;
    background-color:none
}


/* =========================================================
   VALIDATION
   ========================================================= */

.sa-datepicker {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all .2s ease;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
}

    .sa-datepicker:hover {
        border-color: #cbd5e1;
    }

    .sa-datepicker:focus {
        border-color: #6366f1;
        box-shadow: 0 0 0 4px rgba(99,102,241,.12);
    }

/* =========================================================
   LABEL
   ========================================================= */

.form-group label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

/* =========================================================
   REQUIRED
   ========================================================= */

.required {
    color: #ef4444;
}

/* =========================================================
   VALIDATION
   ========================================================= */

.validation-message {
    margin-top: 8px;
    font-size: 13px;
    color: #ef4444;
}


.primary-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    min-height: 52px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(79,70,229,.25), inset 0 1px 0 rgba(255,255,255,.15);
}

    .primary-link-btn:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(79,70,229,.35), inset 0 1px 0 rgba(255,255,255,.2);
    }

    .primary-link-btn:active {
        transform: translateY(0);
    }

    .primary-link-btn span {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .primary-link-btn span:first-child {
            font-size: 16px;
}


.validation-message {
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

.validation-errors {
    color: #dc2626;
}

.input-validation-error {
    border-color: #dc2626 !important;
}

.form-control.invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220,38,38,.08);
}


.primary-btn {
    border: none;
    height: 56px;
    padding: 0 28px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #4f46e5, #6366f1);
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 10px 25px rgba(79,70,229,.25);
}

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(79,70,229,.35);
    }

.secondary-btn {
    border: none;
    height: 56px;
    padding: 0 24px;
    border-radius: 18px;
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 700;
    cursor: pointer;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

    .page-header h1 {
        margin: 0;
        font-size: 54px;
        font-weight: 800;
        color: #0f172a;
    }

    .page-header p {
        margin-top: 10px;
        color: #64748b;
        font-size: 18px;
    }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 45%, #e0f2fe 100%);
    color: #1e293b;
}

.sidebar {
    width: 100%;
    background: linear-gradient(90deg, #020617 0%, #0f172a 45%, #1e293b 100%);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(15,23,42,0.15);
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    color: white;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
}

.logo:hover {
    color: white;
    text-decoration: none;
}

.menu {
    align-items: center;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

    .menu a,
    .menu button.nav-link {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 14px;
        color: #cbd5e1;
        cursor: pointer;
        display: inline-flex;
        font: inherit;
        font-weight: 700;
        gap: 6px;
        min-height: 48px;
        margin-bottom: 0;
        padding: 0 16px;
        text-decoration: none;
        transition: background .2s ease, color .2s ease, box-shadow .2s ease;
        white-space: nowrap;
    }

.dropdown-trigger {
    justify-content: center;
}

.nav-caret {
    color: #d1d5db;
    font-size: 12px;
    line-height: 1;
    transform: translateY(1px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 260px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(2,6,23,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: all 0.28s ease;
    z-index: 1000;
}

.dropdown-align-right .dropdown-menu {
    right: 0;
    left: auto;
}

    .dropdown-menu a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        margin-bottom: 10px;
        border-radius: 16px;
        background: rgba(255,255,255,0.05);
        color: #e2e8f0 !important;
        font-weight: 600;
        transition: all 0.25s ease;
        border: 1px solid transparent;
    }

        .dropdown-menu a:hover {
            background: linear-gradient(135deg, #2563eb, #4f46e5);
            color: white !important;
            transform: translateX(4px);
            border-color: rgba(255,255,255,0.12);
        }

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu a:hover,
.menu a.active,
.menu button.nav-link:hover,
.menu button.nav-link:focus-visible,
.menu button.nav-link.active {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.main {
    width: 100%;
    padding: 35px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search {
    border: 1px solid rgba(255,255,255,0.6);
    width: 320px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile {
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 10px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .profile img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(14px);
}

    .card h3 {
        font-size: 15px;
        color: #64748b;
        margin-bottom: 12px;
    }

    .card .stat-value {
        font-size: 38px;
        font-weight: 700;
        color: #020617;
        letter-spacing: -1px;
    }

:where(h1, h2, h3, h4, h5, h6)[tabindex="-1"]:focus {
    outline: none;
}

.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.table-card,
.activity-card,
.page-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(14px);
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

    table th,
    table td {
        padding: 16px;
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }

    table th {
        color: #64748b;
        font-size: 15px;
    }

.status {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.open {
    background: #dcfce7;
    color: #166534;
}

.pending {
    background: #fef3c7;
    color: #92400e;
}

.closed {
    background: #fee2e2;
    color: #991b1b;
}

.activity-item {
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

    .activity-item:last-child {
        border-bottom: none;
    }

.premium-activity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(248,250,252,0.95));
    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
    transition: all 0.3s ease;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.5);
}

    .premium-activity:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 45px rgba(37,99,235,0.12);
    }

.activity-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blue-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.green-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.orange-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.red-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.premium-activity strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: #0f172a;
}

.premium-activity p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
    font-size: 14px;
}

.premium-activity small {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
    width: 100%;
}

.full-width {
    grid-column: 1 / -1;
}

.mini-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
    margin-top: 15px;
}

    .mini-card h4 {
        margin-bottom: 8px;
    }

.badge {
    background: #2563eb;
    color: white;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    display: inline-block;
    margin-top: 12px;
}

.btn {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(37,99,235,0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.35);
    }

.form-group {
    margin-bottom: 10px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .premium-form-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 0px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(15,23,42,0.08);
    }

.form-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(37,99,235,0.15));
    color: #4f46e5;
    box-shadow: 0 15px 35px rgba(79,70,229,0.12);
}

.form-subtitle {
    color: #64748b;
    margin-top: -20px;
    font-size: 16px;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px !important;
    border-radius: 16px 0px 0px 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

.input-wrapper .form-control,
.input-wrapper .custom-select,
.input-wrapper input,
.input-wrapper select {
    padding-left: 72px !important;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 56px;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    background: #fff;
    padding: 0 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(15,23,42,0.04);
}

    .form-group textarea {
        width: 100%;
        border-radius: 18px;
        border: 1px solid #dbe4f0;
        background: #fff;
        padding: 18px 20px;
        font-size: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(15,23,42,0.04);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #4f46e5;
        box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
    }

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 26px;
}

.case-workspace-links {
    margin-bottom: 28px;
}

.premium-save-btn {
    padding: 16px 28px;
}

.secondary-btn {
    border: none;
    background: #fff;
    color: #0f172a;
    padding: 16px 26px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    cursor: pointer;
}

.upload-box {
    border: 2px dashed rgba(37,99,235,0.35);
    border-radius: 22px;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(79,70,229,0.08));
    transition: all 0.3s ease;
}

    .upload-box:hover {
        transform: translateY(-3px);
        border-color: #2563eb;
        box-shadow: 0 20px 40px rgba(37,99,235,0.12);
    }

.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: #f8fafc;
}

.calendar-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.calendar-day {
    text-align: center;
    font-weight: 700;
    color: #64748b;
    padding: 12px;
}

.calendar-cell {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.8);
    min-height: 180px;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
    transition: 0.3s ease;
}

    .calendar-cell:hover {
        transform: translateY(-4px);
    }

.active-day {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.date {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.event {
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    color: white;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .event strong {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
    }

.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.calendar-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.premium-btn {
    border: none;
    padding: 14px 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.75);
    color: #0f172a;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .premium-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(37,99,235,0.20);
    }

.active-btn {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
}

.primary-action {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 15px 30px rgba(37,99,235,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .quick-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.35);
    }

.custom-select {
    width: 100%;
    padding: 16px 18px 16px 48px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(15,23,42,0.08);
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%230f172a' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    padding-right: 50px;
}

    .custom-select:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.15);
    }

    .custom-select:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
    }

.autocomplete-search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #64748b;
    z-index: 2;
}

.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.custom-autocomplete {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(15,23,42,0.08);
    transition: all 0.3s ease;
}

    .custom-autocomplete:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
    }

.autocomplete-dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(2,6,23,0.35);
    display: none;
    z-index: 999;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}

.autocomplete-item {
    padding: 16px 18px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .autocomplete-item:hover {
        background: linear-gradient(135deg, #2563eb, #4f46e5);
        color: white;
    }

.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.red {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

@media(max-width: 1100px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 700px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 1200px) {
    .form-grid,
    .page-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 900px) {
    .sidebar {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .logo {
        width: 100%;
        text-align: center;
        font-size: 24px;
    }

    .menu {
        align-items: stretch;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

        .menu a,
        .menu button.nav-link,
        .dropdown > a,
        .dropdown > button {
            font-size: 15px;
            justify-content: flex-start;
            padding: 0 18px;
            text-align: left;
            width: 100%;
        }

    .dropdown-menu {
        left: 0;
        margin-top: 12px;
        min-width: 100%;
        position: relative;
        top: 0;
        width: 100%;
    }

    .main {
        padding: 20px;
        margin-top: 10px;
    }

    .grid,
    .page-grid,
    .cards {
        grid-template-columns: 1fr;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search {
        width: 100%;
    }

    .calendar-actions {
        width: 100%;
        margin-top: 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-btn,
    .btn,
    .quick-btn {
        width: 100%;
        justify-content: center;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .calendar-cell {
        min-height: auto;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

body {
    flex-direction: column;
}

.main {
    margin-left: 0;
    width: 100%;
}

.grid {
    grid-template-columns: 1fr;
}

/* ======================================== */
/* CREATE MENU */
/* ======================================== */

.create-menu-wrapper {
    position: relative;
}

.create-btn {
    height: 58px;
    padding: 0 24px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg,#4f46e5,#2563eb);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(79,70,229,0.25);
    transition: all .3s ease;
}

    .create-btn span {
        font-size: 22px;
    }

    .create-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 45px rgba(79,70,229,0.35);
    }

.create-dropdown {
    position: absolute;
    top: 72px;
    width: 320px;
    background: rgba(15,23,42,0.97);
    border-radius: 28px;
    padding: 18px;
    display: none;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 60px rgba(2,6,23,0.35);
    z-index: 9999;
}

    .create-dropdown.show {
        display: flex;
    }

.create-section-title {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.create-dropdown a {
    height: 56px;
    border-radius: 18px;
    text-decoration: none;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    font-weight: 600;
    transition: all .25s ease;
}

    .create-dropdown a:hover {
        background: linear-gradient(135deg,#2563eb,#4f46e5);
        transform: translateX(4px);
        color: white;
    }


