.woocommerce-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.woocommerce-input-wrapper input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.woocommerce-input-wrapper .file-preview {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f7f7f7;
    color: #666;
    font-size: 14px;
}

.form-row.validate-required label .required {
    color: #e2401c;
}

.woocommerce-input-wrapper input[type="file"]:focus {
    outline: 2px solid #96588a;
    outline-offset: -2px;
}

/* Hide the default file input button */
.woocommerce-input-wrapper input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    width: 0;
}

.woocommerce-input-wrapper input[type="file"]::before {
    content: 'Choose File';
    display: inline-block;
    background: #96588a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;
}

.woocommerce-input-wrapper input[type="file"]:hover::before {
    background: #864f7b;
} 