

        .left-column {
            flex: 3;
        }

        .right-column {
            flex: 1;
            width: 340px;
            height: 689px;
            flex-shrink: 0;
            background: #FFF;
        }

        .dashboard-header {
            background-color: #0d1b4c;
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .dashboard-header h2 {
            color: #FFF;
            font-family: Roboto;
            font-size: 25px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            letter-spacing: -0.5px;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .edvdo_expert_dashboard_status_card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(252, 160, 0, 0.50);
            padding: 16px;
            text-align: center;
            width: 32.33%;
            flex-shrink: 0;
            margin: 0.5%;
        }

        .past-sessions {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }

        .past-sessions .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            color: #242424;
            font-family: Roboto;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .past-sessions table {
            width: 100%;
            border-collapse: collapse;
            color: #242424;
            font-family: Roboto;
            font-size: 16px;
            font-weight: 400;
            line-height: 160%;
        }

        .past-sessions th, .past-sessions td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        .status-complete {
            color: green;
        }

        .calendar-box {
            width: 315px;
            height: 315px;
            flex-shrink: 0;
            border-radius: 16px;
            background: #FFF;
            box-shadow: 8px 3px 22px 10px rgba(150, 150, 150, 0.11);
        }

        .calendar-box .header {
            display: flex;
            justify-content: space-between;
            padding: 15px 24px;
        }

        .calendar-box .header span {
            color: #0F2552;
            font-family: Roboto;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .calendar-box .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            font-size: 14px;
            text-align: center;
        }

        .calendar-day {
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .calendar-day.today {
            background: #1F95AF;
            color: white;
        }

        .calendar-day:hover {
            background-color: #e6ecff;
            cursor: pointer;
        }

        .session-list {
            margin-top: 10px;
            text-align: left;
        }

        .session-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(63, 77, 203, 0.10); /* lighter blue */
    border-radius: 8px;
    margin-top:20px;
    padding: 5px 12px;
    margin-bottom: 10px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.session-card .session-details-btn {
    font-family: Roboto;
    font-size: 13px;
    background: #FFF;
    border: 1px solid #000;
    padding: 6px 10px;
    cursor: pointer;
    margin-right: 10px;
    flex-shrink: 0;
}

.session-card .session-info {
    text-align: right;
    font-family: Roboto;
    font-size: 14px;
    line-height: 140%;
}

.session-card .session-info strong {
    display: block;
    font-weight: 700;
    color: #000;
}



        .right-column-content {
            padding-left: 5px;
            color: #242424;
            font-family: Roboto;
            font-size: 20px;
            font-weight: 700;
            line-height: 150%;
            letter-spacing: -0.5px;
        }

        .welcome-content {
            color: #FFF;
            font-family: Roboto;
            font-size: 16px;
            font-weight: 400;
            line-height: 160%;
        }

        .view-button {
            font-family: Roboto;
            font-size: 16px;
            font-weight: 400;
            line-height: 160%;
        }

        .career-expert-table-heading {
            color: #C6C6C6;
        }







/******************************Calendar CSS******************************************************/


/*----------------------------------------------------- The below CSS is used for Calendar in the Dashboard page----------------------------------------------------------------*/

.calendar-container {
    width: 100%;
    height: 100%;
    margin-left: 1.4%;
    box-sizing: border-box;
    display: grid; 
}
.calendar-header {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 1%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.calendar-header div {
    cursor: pointer;
    user-select: none;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0%; /* Adjust gap relative to the parent container */
}

.calendar-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20%;
    box-sizing: border-box;
    width: 80%;
    height: 80%; /* Adjust height as needed */
    border: none; /* Remove borders */
}
.calendar-grid .header {
    background-color: #f2f2f2;
    font-weight: bold;
}
.calendar-grid .weekend {
    background-color: rgba(63, 77, 203, 0.5);; /* Red background for weekends */
    color: #fff;
}
.calendar-grid .meet-cancelled {
    background-color: #ffcccc; /* Red background for weekends */
    color: #242424;
}
.calendar-grid .meet-next-appointment {
    background-color: rgba(0, 204, 119, 0.75); /* Red background for weekends */
    color: #fff;
}
.calendar-grid .today {
    background-color: rgba(255, 235, 59, 0.75);
    color: #242424;
}

/*----------------------------------------------------- The above CSS is used for Calendar in the Dashboard page----------------------------------------------------------------*/