/* WPForo Full Name Validation Styles */
.wpf-validation-status {
    min-height: 20px;
    margin-top: 8px;
}

.wpf-validation-status span {
    font-size: 14px;
}

.wpf-validation-status .wpf-loading {
    color: #007cba;
    font-weight: normal;
}

.wpf-validation-status .wpf-success {
    color: #28a745;
    font-weight: bold;
}

.wpf-validation-status .wpf-error {
    color: #dc3545;
    font-weight: bold;
}

.wpf-validate-button-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    vertical-align: top;
}

#wpf-validate-fullname-btn {
    transition: all 0.2s ease;
}

#wpf-validate-fullname-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Full Name and Graduation Year fields styling - on separate rows */
.wpf-field-name-full_name,
.wpf-field-name-grad_year {
    margin-bottom: 15px;
    width: 100%;
}

.wpf-field-name-full_name .wpf-field-wrap input[type="text"],
.wpf-field-name-grad_year .wpf-field-wrap input[type="text"] {
    width: 100%;
    max-width: 100%;
}

/* Graduation Year specific styling */
.wpf-field-name-grad_year input[type="text"] {
    max-width: 150px;
}

/* Hide the dotted line (clear fix) after the full name field row */
.wpf-row-0-col-last .wpf-cl {
    display: none;
}

/* Remove dotted borders from wpforo fields */
.wpf-field, .wpf-td, .wpf-tr {
    border-bottom: none !important;
}
