/**
 * KSIJ Madrasah Student Validation - Frontend Styles
 */

/* Validation status messages */
.ksij-validation-status {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.ksij-validation-status.show {
    display: block;
}

.ksij-validation-status.validating {
    background: #f0f6fc;
    border: 1px solid #c8d7e8;
    color: #1e4d78;
}

.ksij-validation-status.validating::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    border: 2px solid #1e4d78;
    border-top-color: transparent;
    border-radius: 50%;
    animation: ksij-spin 0.8s linear infinite;
    vertical-align: middle;
}

.ksij-validation-status.valid {
    background: #ecf7ed;
    border: 1px solid #8bc28e;
    color: #1e4620;
}

.ksij-validation-status.valid::before {
    content: '✓';
    margin-right: 8px;
    font-weight: bold;
}

.ksij-validation-status.error {
    background: #fcf0f0;
    border: 1px solid #e8a0a0;
    color: #8b1c1c;
}

.ksij-validation-status.error::before {
    content: '✕';
    margin-right: 8px;
    font-weight: bold;
}

@keyframes ksij-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Student name field highlight */
.wc-pao-addon input.ksij-validated {
    border-color: #8bc28e !important;
    box-shadow: 0 0 0 1px #8bc28e !important;
}

.wc-pao-addon input.ksij-error {
    border-color: #e8a0a0 !important;
    box-shadow: 0 0 0 1px #e8a0a0 !important;
}

/* Inline help text */
.ksij-help-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .ksij-validation-status {
        font-size: 13px;
        padding: 8px 12px;
    }
}
