/* styles/download.css - Downloads page specific styles */

.download-category {
    margin-bottom: 30px;
}

.download-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.download-list {
    list-style-type: none;
    padding: 0;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(var(--primary-color-rgb), 0.05);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(var(--primary-color-rgb), 0.15);
}

.file-name {
    font-weight: 600;
    color: var(--text-color);
    flex-grow: 1;
    margin-right: 20px;
}

.download-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

/* Dark mode adjustments */
.dark-mode .download-item {
    background-color: #2a2a3e;
}

.dark-mode .file-name {
    color: var(--text-color);
}
