/* Layout Blocks – CV upload field styling for the Element Camp contact form. */

.lb-cv-field .tcg-form-control-file {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lb-cv-field .lb-cv-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px dashed rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lb-cv-field .lb-cv-input:hover,
.lb-cv-field .lb-cv-input:focus {
    border-color: currentColor;
    background: rgba(0, 0, 0, 0.04);
    outline: none;
}

.lb-cv-field .lb-cv-input::file-selector-button {
    margin-right: 12px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.lb-cv-field .lb-cv-input::file-selector-button:hover {
    opacity: 0.85;
}

.lb-cv-field .lb-cv-hint {
    font-size: 12px;
    opacity: 0.65;
    line-height: 1.4;
}

/* Match Element Camp's notification spacing for our injected messages. */
.tcg-contact-form-form .tcg-contact-form-notification {
    margin-top: 14px;
}
