@import url('./styles.css');

.date-circle {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-gray);
    flex-shrink: 0;
    border: 0.05rem solid var(--dark-orange);
}

.data-circle-selected {
    background-color: var(--dark-yellow);
}

.event-row {
    margin-bottom: 1.5625rem;
    align-items: flex-start;
}

.time-place {
    width: 8.75rem;
}

.speaker-photo {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    object-fit: cover;
}

.speaker-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.speaker:hover {
    color: var(--medium-blue);
}

.toggle-description{
    font-size: 1rem;
    color: var(--dark-blue);
    cursor: pointer;
    vertical-align: baseline;
    color: var(--bs-secondary-color);
}

.toggle-description:hover {
    color: var(--medium-blue);
}

.coffee-break {
    background-color: #fff8e6;
    border-radius: 0.5rem;
    padding: 0.9375rem;
}

#view_all_agenda {
    color: var(--dark-blue);
    justify-content: end;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    gap: .5rem;
}

.event-item {
    border-bottom: 0.0625rem solid var(--dark-gray);
    padding: 0.75rem 0;
}

tr {
    border-bottom: 0.125rem solid var(--dark-gray) !important;
}

.modal-body{
    max-height: 60vh;
    overflow: auto;
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .date-circle {
        font-size: 0.8rem;
        padding: 0.3rem;
        margin-bottom: 0.5rem;
        width: 5rem;
        height: 5rem;
    }
    
    .event-item {
        flex-direction: column !important;
        text-align: left !important;
        padding: 1rem;
        border: 0.0625rem solid var(--light-gray);
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .time-place {
        width: 100% !important;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .event-content {
        width: 100% !important;
    }
    
    .speaker-section {
        margin-bottom: 0.5rem;
    }
    
    .description-section p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Responsive - Móviles */
@media (max-width: 576px) {
    .time-place {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }
    
    .time {
        font-size: 1.1rem;
        font-weight: bold;
    }
    
    .place {
        font-size: 0.9rem;
    }
    
    .speaker-name {
        font-size: 1rem;
    }
}