/* Filtro - Carga */

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3399cc; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 40px auto; /* Centrar el loader */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Agenda Slider Wrapper */
.agenda-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px;
    margin: 0 auto;
}

/* Pillar Item */
.pillar-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #CC6633;
    color: #fff;
    border-radius: 10px;
    position: relative;
}

.pillar-header {
    cursor: default;
}

.pillar-header h3 {
    color: #fff;
    margin: 0;
}

.pillar-header p {
    color: #fff;
}

.pillar-item .agenda-slider {
    margin-top: 20px;
}

/* Agenda Slider */
.agenda-slider {
    display: flex;
    flex-direction: column;
}

/* Agenda Item */
.agenda-item {
    min-height: 150px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
}

/* Agenda Header */
.agenda-header {
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
}

.agenda-header h3 {
    color: #fff;
}

/* Agenda Content */
.agenda-content {
    border-top: 1px solid #fff;
    margin-top: 10px;
}

.agenda-content p {
    color: #fff;
}

/* Form Styles */
.agenda-filter-form {
    margin-bottom: 20px;
}

.agenda-filter-form label {
    margin-right: 10px;
}

.agenda-filter-form select {
    margin-right: 20px;
    padding: 5px;
}