/* BCT Event Manager - Frontend Styles */

.bct-events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.bct-event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.bct-event-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bct-event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bct-event-content {
    padding: 20px;
}

.bct-event-title {
    font-size: 1.5em;
    margin: 0 0 10px;
}

.bct-event-date {
    color: #666;
    margin-bottom: 10px;
}

.bct-event-location {
    color: #888;
    font-size: 0.9em;
}

.bct-schedule {
    margin: 30px 0;
}

.bct-schedule-day {
    margin-bottom: 40px;
}

.bct-schedule-date {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
}

.bct-schedule-item {
    display: grid;
    grid-template-columns: 120px 150px 1fr;
    gap: 20px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bct-schedule-time {
    font-weight: 600;
    color: #2271b1;
}

.bct-schedule-room {
    color: #666;
}

.bct-speakers-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.bct-speaker-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.bct-speaker-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.bct-speaker-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.bct-speaker-title {
    color: #666;
    font-size: 0.9em;
}
