.dash-wrapper {
    display: flex;
    min-height: calc(100vh - 64px);
}

.dash-main {
    flex: 1;
    padding: 36px 40px;
    overflow-y: auto;
    background: #F7F3FF;
}

.dash-sidebar {
    width: 240px;
    min-width: 240px;
    height: calc(100vh - 64px);

    position: sticky;
    top: 64px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 28px 16px;

    background: #1E1033;

    overflow-y: auto;
}

.sidebar-section-label {
    padding: 16px 12px 8px;

    color: rgba(255, 255, 255, .3);

    font: 700 9px 'Space Mono', monospace;

    letter-spacing: .2em;
    text-transform: uppercase;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;

    padding: 11px 14px;

    border: none;
    border-radius: 12px;

    background: transparent;

    color: rgba(255, 255, 255, .5);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: .2s;
}

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

.sidebar-item.active {
    background: #006FEE;
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, .35);
}

.sidebar-icon {
    width: 24px;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 32px;
}

.dash-header-title {
    margin-bottom: 4px;

    font-size: 32px;
    font-weight: 900;

    color: #1E1033;
}

.dash-header-date {
    color: #9580B8;
    font: 700 12px 'Space Mono', monospace;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;

    background: #fff;

    border: 2px solid #DDD6F3;
    border-radius: 999px;

    color: #10B981;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(124, 58, 237, .1);
}

.kpi-card,
.room-status-card,
.schedule-card {
    background: #fff;
    border: 2px solid #DDD6F3;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(124, 58, 237, .1);

}

.kpi-card {
    padding: 24px;
    transition: .2s;
}

.room-status-card,
.schedule-card {
    padding: 28px;
}

.schedule-card {
    height: 100%;
}

.kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, .14);
}

.kpi-icon {
    margin-bottom: 12px;
    font-size: 32px;
}

.kpi-value {
    margin-bottom: 4px;

    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.kpi-label {
    color: #9580B8;
    font-size: 13px;
    font-weight: 700;
}

.kpi-green {
    color: #10B981;
}

.kpi-red {
    color: #EF4444;
}

.kpi-blue {
    color: #006FEE;
}

.kpi-yellow {
    color: #D97706;
}

/* ==========================
   ROOM STATUS
========================== */
.room-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}

.room-status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}

.room-status-card-title,
.schedule-card-title {
    margin-bottom: 20px;

    font-size: 18px;
    font-weight: 900;

    color: #1E1033;
}

.room-cell {

    padding: 14px 12px;

    border: 2px solid;
    border-radius: 14px;

    text-align: center;

    cursor: pointer;

    transition: .2s;

}

.room-cell:hover {
    transform: scale(1.04);
}

.room-cell.tersedia {
    background: #D1FAE5;
    border-color: #10B981;
}

.room-cell.penuh {
    background: #FEE2E2;
    border-color: #EF4444;
}

.room-cell.booking {
    background: #FEF3C7;
    border-color: #FBBF24;
}

.room-cell-name {
    margin-bottom: 4px;

    color: #1E1033;

    font-size: 13px;
    font-weight: 900;
}

.room-cell-status {
    margin-bottom: 6px;

    font: 700 10px 'Space Mono', monospace;
}

.tersedia .room-cell-status {
    color: #10B981;
}

.penuh .room-cell-status {
    color: #EF4444;
}

.booking .room-cell-status {
    color: #92400E;
}

.room-cell-time {
    color: #9580B8;
    font-size: 11px;
    font-weight: 600;
}


.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px dashed #DDD6F3;
}

.schedule-item:last-child {
    border: none;
}

.sched-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    flex-shrink: 0;
}

.sched-room {
    min-width: 100px;

    color: #1E1033;

    font-size: 13px;
    font-weight: 800;
}

.sched-customer {
    flex: 1;

    color: #4B3B6B;

    font-size: 13px;
}

.sched-time {
    white-space: nowrap;

    color: #006FEE;

    font: 700 12px 'Space Mono', monospace;
}

/* ==========================
   DELETE BUTTON JADWAL
========================== */

.btn-delete-jadwal {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #FEE2E2;
    color: #EF4444;
    font-size: 16px;
    cursor: pointer;
    transition: .25s;
}

.btn-delete-jadwal:hover {
    background: #EF4444;
    color: white;
    transform: scale(1.12);
}


/* ==========================
   JADWAL FIX
========================== */

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.schedule-info {
    flex: 1;
}

.sched-room {
    display: block;
    margin-bottom: 4px;
}

.sched-customer {
    display: block;
    margin-bottom: 4px;
}

.sched-time {
    display: block;
}