/* --- ExitEntry Dashboard Core Styles --- */
:root {
    --bg-dash: #F5F5F7;
    --sidebar-width: 280px;
    --accent-blue: #0071E3;
    --text-main: #1D1D1F;
    --text-dim: #86868B;
    --radius-dash: 24px;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg-dash);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Layout */
.dash-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: 100vh;
}

.dash-sidebar {
    background: #FFFFFF;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    box-sizing: border-box;
}

.dash-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #000;
    text-decoration: none;
    margin-bottom: 48px;
    padding-left: 20px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.dash-nav-item {
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.dash-nav-item:hover {
    background: #F5F5F7;
    color: #000;
}

.dash-nav-item.active {
    background: #000;
    color: #FFF;
}

.dash-nav-item i {
    width: 20px;
    text-align: center;
}

/* Main Content Area */
.dash-main {
    padding: 48px 60px;
}

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

.dash-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFF;
    padding: 8px 16px 8px 8px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.avatar {
    width: 36px;
    height: 36px;
    background: #000;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Cards & Grid */
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.dash-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
}

.stats-card {
    display: flex;
    flex-direction: column;
}

.stats-label {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 600;
}

.stats-value {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Table Style */
.dash-table-wrapper {
    background: #FFF;
    border-radius: 32px;
    padding: 24px;
    margin-top: 24px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    padding: 16px 20px;
    border-bottom: 1px solid #F0F0F0;
}

td {
    padding: 20px;
    font-size: 14px;
    border-bottom: 1px solid #F9F9F9;
}

/* Buttons */
.btn-dash {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-black { background: #000; color: #FFF; }
.btn-outline { background: transparent; border: 1px solid #EAEAEA; color: #111; }

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: #FFFFFF;
    width: 100%;
    max-width: 600px;
    border-radius: 40px;
    padding: 48px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 1100px) {
    .dash-layout { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
}

/* Badges */
.badge {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.badge-green { background: #E1E7DB; color: #5B6D54; }
.badge-orange { background: #F8EFDF; color: #B68F52; }
.badge-gray { background: #EDEDED; color: #666; }
.badge-red { background: #FDECEC; color: #FF3B30; }

/* Package Cards */
.package-card {
    background: #FFF;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #EAEAEA;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.package-card:hover {
    border-color: #000;
    transform: translateY(-4px);
}
.package-price {
    font-size: 24px;
    font-weight: 800;
    margin: 12px 0;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #000;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
}
