.note {
    font-size: 14px;
    color: #ffc107cf;
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 10px 15px;
    background-color: #8b8b8b36;
    border-radius: 8px;
}
.header {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
}
.schedule-container {
    min-height: calc(100% - 106px);
    padding-top: 100px;
    padding-bottom: 50px;
    /* overflow: hidden; */
}

.app-name {
    font-family: 'Rajdhani-Bold';
    color: #a218c9;
}
.schedule-card {
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            /* margin-bottom: 25px; */
            overflow: hidden;
            border: none;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            min-height: 320px;
        }
        
        .schedule-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
            color: white;
        }
        
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-direction: column;
        }
        
        .session-type {
            background-color: rgba(255,255,255,0.9);
            color: var(--dark-text);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 16px;
            font-family: SplineSans-Medium;
        }
        
        .online {
            background-color: rgba(76, 175, 80, 0.9);
            color: white;
        }
        
        .in-person {
            background-color: rgba(108, 99, 255, 0.9);
            color: white;
        }
        
        .session-count {
            color: white;
            /* font-size: 0.9rem; */
            /* font-weight: 500; */
            font-size: 16px;
            font-family: SplineSans-Medium;
        }
        
        .session-title {
            font-size: 28px;
            /* font-weight: 700; */
            margin-bottom: 5px;
            /* line-height: 1.2; */
            font-family: Rajdhani-Bold;
        }
        
        .session-category {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 8px;
        }
        
        .session-details {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .session-duration, .session-level {
            display: flex;
            align-items: center;
            font-size: 16px;
            opacity: 0.9;
        }
        
        .session-duration i, .session-level i {
            margin-right: 5px;
        }
        
        .join-btn {
            background: #34C759;
            color: #ffffff;
            border: none;
            border-radius: 40px;
            padding: 8px 20px;
            /* font-weight: 600; */
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: SplineSans-Medium;
            font-size: 18px;
            text-transform: capitalize;
        }
        
        .join-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .join-btn i {
            margin-left: 8px;
        }
        
        .offline-info {
            text-align: center;
            color: white;
            font-style: italic;
            padding: 10px 0;
        }
        
       
        .schedule-grid-container {
    row-gap: 20px;
}

.schedule-info {
    width: 100%;
    margin-bottom: 10px;
}
