/*.expert_session-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.student-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info div {
    line-height: 1.2;
}

.student-info strong {
    font-weight: 600;
    font-size: 15px;
    display: block;
}

.session-focus {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #2a7c49;
}

.session-focus img {
    width: 32px;
    height: 32px;
}

.school-info {
    text-align: right;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.school-info span {
    display: block;
}

.session-bell {
    position: absolute;
    top: 20px;
    right: 20px;
}

.session-bell img {
    width: 20px;
    opacity: 0.8;
}

.toggle-details {
    margin: 14px 0 10px;
    color: #1a73e8;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.session-details {
    display: none;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.session-details p:first-of-type {
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.session-details span {
    color: #2b7a4b;
    font-weight: 500;
}

.session-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.session-buttons button {
    padding: 6px 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.session-buttons button:hover {
    background-color: #f2f2f2;
}

.session-buttons .primary {
    background-color: #1a73e8;
    color: white;
    border: none;
}

.session-buttons .primary:hover {
    background-color: #155fc0;
}*/

