html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #181825;
    color: #cdd6f4;
}

main {
    flex: 1;
    padding: 30px 20px;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.dashboard-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    padding: 30px 20px 60px 20px;
}

.glass-panel {
    background: rgba(24, 24, 37, 0.75) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    padding: 28px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.glass-panel h1, .glass-panel h2 {
    color: #ffffff !important;
    margin-top: 0 !important;
}

.modern-input {
    all: unset;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 46px !important;
    padding: 0 16px !important;
    background: rgba(11, 12, 16, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
}

textarea.modern-input {
    height: auto !important;
    padding: 12px 16px !important;
}

.modern-input:focus {
    border-color: #89b4fa !important;
    box-shadow: 0 0 0 4px rgba(137, 180, 250, 0.15) !important;
}

select.modern-input option {
    background-color: #11111b;
    color: #cdd6f4;
}

.btn-primary-gradient {
    all: unset;
    box-sizing: border-box !important;
    height: 46px !important;
    padding: 0 24px !important;
    background: linear-gradient(135deg, #89b4fa 0%, #cba6f7 100%) !important;
    color: #11111b !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(137, 180, 250, 0.4) !important;
}

.btn-secondary {
    all: unset;
    box-sizing: border-box !important;
    height: 46px !important;
    padding: 0 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #cdd6f4 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.btn-danger-custom {
    all: unset;
    box-sizing: border-box !important;
    height: 46px !important;
    padding: 0 20px !important;
    background: rgba(243, 139, 168, 0.15) !important;
    color: #f38ba8 !important;
    border: 1px solid rgba(243, 139, 168, 0.3) !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sub-card {
    background: rgba(11, 12, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-active { background: rgba(166, 227, 161, 0.15); color: #a6e3a1; border: 1px solid rgba(166, 227, 161, 0.3); }
.badge-inactive { background: rgba(243, 139, 168, 0.15); color: #f38ba8; border: 1px solid rgba(243, 139, 168, 0.3); }
.badge-pending { background: rgba(249, 226, 175, 0.15); color: #f9e2af; border: 1px solid rgba(249, 226, 175, 0.3); }

.responsive-table-wrapper {
    overflow-x: auto;
}