.hemeroteca-wrapper {
    max-width: 100%;
    margin: 20px 0;
}

.hemeroteca-instruction {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.hemeroteca-wrapper .hemeroteca-filter {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Centra el calendario y el botón */
    width: 100% !important;
}

.hemeroteca-search-box {
    margin-bottom: 10px !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
}

#hemeroteca-inline-calendar {
    display: none !important;
    /* Prevents this empty anchor from pushing the actual calendar */
}

/* Center Flatpickr specifically */
.flatpickr-calendar.inline {
    margin: 0 auto !important;
    display: inline-block !important;
    /* Required for text-align: center to work */
}

.hemeroteca-action {
    margin-bottom: 40px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

#btn-hemeroteca-search {
    padding: 12px 25px !important;
    font-size: 1.1em !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    width: 100% !important;
    min-width: 250px !important;
    max-width: 300px !important;
    display: block !important;
    margin: 15px auto 0 auto !important;
    /* Forces centering in block mode */
}

/* Results Styling */
.hemeroteca-summary {
    background: #f1f1f1;
    padding: 15px;
    margin-bottom: 30px;
    border-top: 3px solid #333;
    /* Changed from left to top for center aesthetic */
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
}

.hemeroteca-results {
    max-width: 800px;
    margin: 0 auto;
}

.hemeroteca-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    align-items: center;
}

.hemeroteca-content {
    width: 65%;
    padding-right: 20px;
}

.hemeroteca-content h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.4em;
}

.hemeroteca-content h3 a {
    text-decoration: none;
}

.hemeroteca-date {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.hemeroteca-image {
    width: 30%;
}

.hemeroteca-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

#hemeroteca-loader,
.hemeroteca-no-results {
    text-align: center;
    padding: 20px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .hemeroteca-item {
        flex-direction: column-reverse;
    }

    .hemeroteca-content,
    .hemeroteca-image {
        width: 100%;
    }

    .hemeroteca-image {
        margin-bottom: 15px;
    }
}