

/* Start:/local/components/custom/downloads.list/templates/.default/style.css?17562865565595*/
.proxmox-downloads * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.proxmox-downloads {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 40px 20px;
}

.proxmox-downloads-container {
    max-width: 1200px;
    margin: 0 auto;
}

.proxmox-downloads-title {
    font-size: 36px;
    color: #4a5568;
    margin-bottom: 30px;
    font-weight: 600;
}

.proxmox-downloads-categories {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
}

.proxmox-downloads-category {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 25px;
    text-decoration: none;
    color: #e67e22;
    font-weight: 500;
    transition: all 0.3s ease;
}

.proxmox-downloads-category:hover {
    border-color: #e67e22;
    background: #fff5f0;
}

.proxmox-downloads-category.active {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

.proxmox-downloads-category.active:hover {
    background: #d35400;
    border-color: #d35400;
}

.proxmox-downloads-section-title {
    font-size: 24px;
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 600;
}

.proxmox-downloads-list {
    list-style: none;
    margin-bottom: 40px;
}

.proxmox-downloads-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proxmox-downloads-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.proxmox-downloads-icon {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
}

.proxmox-downloads-info {
    flex-grow: 1;
}

.proxmox-downloads-name {
    font-size: 20px;
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 15px;
    text-decoration: none;
}

.proxmox-downloads-name:hover {
    color: #e67e22;
}

.proxmox-downloads-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    font-size: 14px;
}

.proxmox-downloads-detail {
    display: flex;
    flex-direction: column;
}

.proxmox-downloads-detail-label {
    color: #718096;
    font-weight: 500;
    margin-bottom: 4px;
}

.proxmox-downloads-detail-value {
    color: #4a5568;
    font-weight: 400;
}

.proxmox-downloads-hash {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.proxmox-downloads-hash code {
    background: #f7fafc;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    display: block;
}

.proxmox-downloads-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.proxmox-downloads-btn-primary {
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
    min-width: 100px;
}

.proxmox-downloads-btn-primary:hover {
    background: #d35400;
}

.proxmox-downloads-btn-secondary {
    background: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 100px;
}

.proxmox-downloads-btn-secondary:hover {
    background: #e67e22;
    color: white;
}

.proxmox-downloads-featured {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.proxmox-downloads-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
}

.proxmox-downloads-featured-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.proxmox-downloads-featured-item:hover {
    background: #e2e8f0;
}

.proxmox-downloads-featured-icon {
    width: 50px;
    height: 65px;
    flex-shrink: 0;
}

.proxmox-downloads-featured-info {
    flex-grow: 1;
}

.proxmox-downloads-featured-name {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
}

.proxmox-downloads-featured-name:hover {
    color: #e67e22;
}

.proxmox-downloads-featured-details {
    font-size: 12px;
    color: #718096;
    display: flex;
    gap: 15px;
}

.proxmox-downloads-featured-btn {
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.proxmox-downloads-featured-btn:hover {
    background: #d35400;
}

@media (max-width: 1024px) {
    .proxmox-downloads-categories {
        flex-wrap: wrap;
    }

    .proxmox-downloads-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .proxmox-downloads-featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proxmox-downloads-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .proxmox-downloads-details {
        grid-template-columns: 1fr;
    }

    .proxmox-downloads-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .proxmox-downloads-featured-item {
        flex-direction: column;
        text-align: center;
    }
}
/* End */
/* /local/components/custom/downloads.list/templates/.default/style.css?17562865565595 */
