/* Estilos específicos para la página de actividades */

.download-container {
    margin-top: 2rem;
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 1.1rem;
}

.download-btn i {
    font-size: 1.3rem;
}

.download-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Estilos del cuadro select */
.filter-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2em auto;
    padding: 0 1em;
    margin-top: -1em;
    margin-bottom: 4em;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #666;
    pointer-events: none;
    z-index: 1;
    transition: border-top-color 0.3s ease;
}

.select-wrapper:hover::after {
    border-top-color: #3d7642;
}

.select-wrapper:focus-within::after {
    border-top-color: #3d7642;
}

.activity-select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border-radius: 25px;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    outline: none;
    border: 2px solid rgb(210, 218, 210);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 0;
}

.activity-select:hover {
    border-color: #3d7642;
}

.activity-select:focus {
    border-color: #3d7642;
    box-shadow: 0 0 5px rgba(61, 118, 66, 0.3);
}