
/* Horizontal List for User Dashboard */
.dash-horizontal-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.dash-horizontal-item {
    min-width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-horizontal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.dash-horizontal-item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
}

.dash-horizontal-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Calendar Styles */
.dash-calendar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.session-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #3b82f6;
}

.session-date {
    font-weight: 600;
    color: #1f2937;
}

.session-title {
    color: #4b5563;
}

/* Iframe Container */
.iframe-container {
    width: 100%;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
