.agenda-tabs-container-3834dac5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.agenda-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.agenda-tab-button {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.agenda-tab-button:hover,
.agenda-tab-button.active {
    background: #000;
    color: #fff;
}
.agenda-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.agenda-tab-pane.active {
    display: block;
}
.agenda-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.agenda-item:last-child {
    border-bottom: none;
}
.agenda-item-time {
    min-width: 140px;
    font-weight: bold;
    color: #555;
}
.agenda-item-details {
    flex: 1;
}
.agenda-item-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #333;
}
.agenda-item-desc {
    color: #666;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .agenda-item {
        flex-direction: column;
        gap: 5px;
    }
    .agenda-item-time {
        min-width: auto;
    }
}