/* Styles for the Download Archives Page */
.download-archives-page .container {
    max-width: 900px;
}

.archive-list {
    margin-top: 40px;
}

.version-section {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden; /* Ensures child elements conform to border radius */
}

.version-header {
    background-color: var(--background-light);
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.version-header h2 {
    font-size: 1.8rem;
    margin: 0;
    border-bottom: none;
    padding: 0;
    text-align: left;
    /* Reset h2 default styles */
    display: block;
    position: static;
    transform: none;
    left: auto;
}

.release-date {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.version-notes {
    padding: 15px 25px;
    margin: 0;
    font-size: 1rem;
}

.file-list {
    padding: 10px 25px 25px 25px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.file-item:last-child {
    border-bottom: none;
}

.file-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.file-details span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.file-action .btn {
    padding: 8px 20px;
}
