﻿.main-wrapper {
    display: flex;
    background: #fff;
}

.sidebar {
    width: 250px;
    background: #fff;
    border-right: 1.5px solid #eee;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto; /* optional */
}

.sidebar-header {
    margin-bottom: 24px;
    padding-left: 28px;
}

.user-name {
    font-weight: 600;
    font-size: 1.13rem;
    display: block;
}

.user-role {
    font-size: 0.94rem;
    color: #aaa;
}

.nav-menu {
    width: 100%;
}

.nav-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 12px 28px;
    font-size: 1.1rem;
    cursor: pointer;
}

.nav-active {
    background: #fff1f4;
    color: #fc538c;
    font-weight: 600;
    border-left: 5px solid #fc538c;
}

.logout-btn {
    margin-top: auto;
    color: #e53935;
    background: none;
    border: none;
    padding: 18px 28px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.content-area {
    margin-left: 250px; /* same as sidebar width */
    width: calc(100% - 250px);
}

.header-banner {
    position: fixed;
    left: 250px; /* same as sidebar width */
    right: 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    z-index: 10000; 
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
}


.main-content {
    margin: 0px 70px 70px 70px;
    padding-top:200px;
}


.conselling-header {
    text-align: center;
    /*margin: 32px;*/
    font-weight: 600;
}

.counselling-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.counselling-subtitle {
    color: #555;
}

.filters-row {
    text-align:end;
}

.status-indicators{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:15px;
}

.status-indicators .status {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-right: 7px;
}

.status.available {
    margin-left: 15px;
    background: #24a9d6;
}

.status.upcoming {
    margin-left: 15px;
    background: #1178FC;
}

.status.done {
    margin-left: 15px;
    background: #34AA45;
}

.status.missed {
    margin-left: 15px;
    background: #e24b4b;
}

.toggle-pill {
    display: inline-flex;
    border: 2px solid #c3d2f7; /* Pill outline */
    border-radius: 17px; /* Fully rounded */
    overflow: hidden;
    background: #fff;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    min-width: 110px;
    padding: 8px 18px 8px 18px;
    cursor: pointer;
    transition: background 0.18s, color 0.13s;
}

    .toggle-btn.active {
        background: #298cff; /* Or #2a76ef for strong blue */
        color: #fff;
        border-radius: 14px; /* keep corners rounded inside the pill */
    }

    .toggle-btn:not(.active) {
        background: #fff;
        color: #222;
    }

.filter-buttons {
    display: inline-flex;
    gap: 9px;
}

.filter-btn {
    background: #eaf6ff;
    border-radius: 11px;
    border: none;
    padding: 7px 16px;
    color: #01579B;
    font-weight: 600;
}

    .filter-btn.active {
        background: #005fb8;
        color: #fff;
    }

.booked-count {
    margin: 16px 0;
    font-size: 1.09rem;
    color: #FFFFFF;
    background: #EE6338;
    padding: 6px 18px;
    border-radius: 7px;
    display: inline-block
}

.date-label {
    margin-bottom: 2px;
    font-weight: 600;
}

.slots-label {
    margin-bottom: 24px;
    color: #666;
}

.card-row {
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
}
.session-card {
    border-radius: 16px;
    min-width: 250px;
    max-width: 290px;
    padding: 18px 14px 18px 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px #ccc6;
    display: flex;
    flex-direction: column;
}

    .session-card.done {
        background: #34AA45;
    }

    .session-card.available {
        background: #24a9d6;
    }

    .session-card.upcoming {
        background: #1178FC;
    }

    .session-card.missed {
        background: #e24b4b;
    }

.session-details {
    color: #fff;
    font-size: 1.06rem;
    text-align:start;
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.6;
}

    .session-details b {
        font-weight: 700;
    }

.zoom-box {
    background: #fff;
    border-radius: 10px;
    padding: 11px 10px 11px 10px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 0.96rem;
}

.zoom-logo-url {
    display: flex;
    align-items: center;
    gap: 9px;
}

.zoom-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.zoom-url {
    color: #1466d7;
    font-size: 0.98rem;
    word-break: break-all;
}

.view-reports-label {
    color: #fff;
    text-align: center;
    font-size: 1.09rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.report-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.report-btn {
    background: #fff;
    color: #1178FC;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    padding: 7px 13px;
    font-size: 1rem;
    min-width: 120px;
    margin-bottom: 5px;
    transition: background 0.15s, color 0.14s;
    box-shadow: 0 1px 5px #0001;
    cursor: pointer;
}

.session-card.done .report-btn {
    color: #34AA45;
    width: 122px;
}

.session-card.available .report-btn {
    color: #1178FC;
    width: 122px;
}

.session-card.upcoming .report-btn {
    color: #49c7fa;
    width: 122px;
}

.session-card.missed .report-btn {
    color: #1178FC;
    width: 122px;
}

.report-btn:hover {
    background: #f5f8fa;
}


.mini-session-card {
    background: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 15px;
    padding: 20px 24px;
    width: 310px;
    margin-bottom: 28px;
    font-size: 1.07rem;
    box-shadow: none;
    color: #222;
    line-height: 1.7;
}

.mini-status {
    color: #21ab6e;
    font-weight: 600;
}

.weekday-tabs {
    display: flex;
    gap: 32px;
    margin: 28px 0 30px 0;
    justify-content: center;
    align-items: center;
}

.weekday-btn {
    min-width: 160px;
    padding: 17px 0;
    font-size: 1.17rem;
    font-weight: 500;
    background: #fff;
    border: 2.2px solid #d3e2f9;
    border-radius: 15px;
    color: #373737;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    transition: background 0.19s, color 0.19s, border-color 0.19s;
}

    .weekday-btn.active {
        background: #298cff;
        border-color: #298cff;
        color: #fff;
    }

