/* Variant Files Frontend Styles */
.variant-files-download {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
}

/* Styles for Downloads Tab */
.variant-downloads-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.variant-download-item {
    margin-bottom: 8px;
}

.variant-download-item:last-child {
    margin-bottom: 0;
}

.variant-download-btn {
    display: inline-block;
    background: #0073aa;
    color: white !important;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.variant-download-btn:hover {
    background: #005a87;
    color: white !important;
    text-decoration: none;
}

.variant-download-btn:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

.variant-files-download h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.variant-files-download ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.variant-files-download li {
    margin-bottom: 6px;
}

.variant-files-download li:last-child {
    margin-bottom: 0;
}

.variant-files-download .button {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.variant-files-download .button:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.variant-files-download .button:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

/* Admin Styles */
.variant-file-row {
    position: relative;
}

.variant-file-row .upload-file-button {
    margin-left: 5px;
}

.variant-files-list {
    max-height: 400px;
    overflow-y: auto;
}

.add-variant-file {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .variant-files-download .button {
        display: block;
        text-align: center;
        margin-bottom: 5px;
        width: 100%;
    }
    
    .variant-file-row input[type="text"] {
        width: 100% !important;
        margin-bottom: 5px;
    }
    
    .variant-file-row .upload-file-button {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
}