/* Archive Page Specific Styles */

.archives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

/* Media query removed for single column preference */


.archive-entry {
    background-color: #222;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.archive-header {
    font-family: var(--font-serif);
    color: var(--level-1);
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 1px dashed #444;
    padding-bottom: 8px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Reuse solved-group but adjust for static display if needed */
.archive-entry .solved-group {
    margin-bottom: 0;
    /* Remove margin from original CSS if present */
    padding: 8px;
    font-size: 0.9rem;
}

.archive-entry .solved-group .category-name {
    font-size: 0.9rem;
}

.archive-entry .solved-group .category-items {
    font-size: 0.8rem;
}

#archives-loading {
    margin-top: 50px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.hidden {
    display: none !important;
}

.back-home-btn {
    margin-top: 30px;
    max-width: 200px;
}