/**
 * CV Upload field styles — matches Divi Contact Form aesthetic.
 */

.cv-upload-field-wrapper {
    margin-bottom: 22px;
}

.cv-upload-field-wrapper .et_pb_contact_form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.cv-upload-required {
    color: #e74c3c;
    margin-left: 2px;
}

.cv-upload-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bbb;
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
}

.cv-upload-input:hover {
    border-color: #888;
}

.cv-upload-input:focus {
    border-color: #2ea3f2;
    outline: none;
    box-shadow: 0 0 0 1px #2ea3f2;
}

/* Status messages */
.cv-upload-status {
    margin-top: 8px;
    font-size: 13px;
    min-height: 20px;
}

.cv-upload-status--info {
    color: #2ea3f2;
}

.cv-upload-status--success {
    color: #27ae60;
}

.cv-upload-status--error {
    color: #e74c3c;
}

/* Loading state on submit button */
.cv-upload-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.cv-upload-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: cv-upload-spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes cv-upload-spin {
    to {
        transform: rotate(360deg);
    }
}
