/* Submit Paper Status - Frontend Styles */
.sps-form-wrap {
    max-width: 860px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.sps-form-header {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff!important;
    padding: 30px 35px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.sps-form-header h2 {  color: #fff!important; margin: 0 0 8px; font-size: 22px; }
.sps-form-header p  { margin: 0; opacity: 0.85; font-size: 14px; }

.sps-form {
    background: #fff;
    padding: 30px 35px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sps-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e8eaf6;
    padding-bottom: 8px;
    margin: 25px 0 18px;
}
.sps-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.sps-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}
.sps-col-full { flex: 0 0 100%; }
.sps-col label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
.sps-req { color: #e74c3c; }
.sps-col input[type="text"],
.sps-col input[type="email"],
.sps-col input[type="url"],
.sps-col input[type="tel"],
.sps-col select,
.sps-col textarea {
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s;
    background: #fafafa;
    width: 100%;
    box-sizing: border-box;
}
.sps-col input:focus,
.sps-col select:focus,
.sps-col textarea:focus {
    border-color: #1a237e;
    outline: none;
    background: #fff;
}

/* File Upload */
.sps-file-wrap { position: relative; }
.sps-file-wrap input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.sps-file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 2px dashed #c5cae9;
    border-radius: 6px;
    cursor: pointer;
    background: #f8f9ff;
    transition: all 0.2s;
    font-size: 14px;
    color: #555;
}
.sps-file-label:hover { border-color: #1a237e; background: #e8eaf6; }
.sps-file-icon { font-size: 22px; }
.sps-file-name { display: block; font-size: 12px; color: #888; margin-top: 5px; }

/* Declaration */
.sps-declaration { background: #f8f9ff; border: 1px solid #c5cae9; border-radius: 6px; padding: 15px 18px; }
.sps-checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14px; color: #444; }
.sps-checkbox-label input[type="checkbox"] { margin-top: 2px; width: 18px; height: 18px; accent-color: #1a237e; flex-shrink: 0; }

/* Submit Button */
.sps-text-center { text-align: center; }
.sps-submit-btn {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff!important;
    border: none;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(26,35,126,0.3);
}
.sps-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,35,126,0.4); }

/* Success Box */
.sps-success-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sps-success-icon {
    width: 70px; height: 70px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    line-height: 70px;
    margin: 0 auto 20px;
}
.sps-success-box h2 { color: #27ae60; margin: 0 0 10px; }
.sps-reg-box {
    background: #e8eaf6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sps-reg-label { font-size: 13px; color: #666; }
.sps-reg-number { font-size: 28px; font-weight: 700; color: #1a237e; letter-spacing: 3px; }
.sps-reg-note { font-size: 12px; color: #888; }

/* Error Box */
.sps-error-box {
    background: #fdecea;
    border-left: 4px solid #e74c3c;
    padding: 12px 18px;
    border-radius: 4px;
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Status Check */
.sps-status-check-wrap { max-width: 800px; margin: 0 auto; font-family: 'Segoe UI', Arial, sans-serif; }
.sps-status-check-header { text-align: center; margin-bottom: 25px; }
.sps-status-check-header h2 { color: #1a237e; margin-bottom: 8px; }
.sps-status-check-header p { color: #666; font-size: 14px; }
.sps-check-form { margin-bottom: 25px; }
.sps-check-row { display: flex; gap: 10px; }
.sps-check-row input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #c5cae9;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
}
.sps-check-row input:focus { border-color: #1a237e; outline: none; }
.sps-check-row button {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.sps-check-row button:hover { background: #283593; }

/* Result Card */
.sps-result-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sps-result-header {
    background: linear-gradient(135deg, #1a237e, #283593);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sps-result-reg { color: #fff; font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.sps-status-badge {
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Progress Steps */
.sps-progress-wrap {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: #f8f9ff;
    border-bottom: 1px solid #e8eaf6;
    overflow-x: auto;
}
.sps-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 80px; }
.sps-step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.sps-step.active .sps-step-circle { background: #1a237e; color: #fff; box-shadow: 0 0 0 4px rgba(26,35,126,0.2); }
.sps-step.completed .sps-step-circle { background: #27ae60; color: #fff; }
.sps-step-label { font-size: 11px; color: #888; text-align: center; font-weight: 600; }
.sps-step.active .sps-step-label { color: #1a237e; }
.sps-step.completed .sps-step-label { color: #27ae60; }
.sps-step-line { flex: 1; height: 3px; background: #ddd; min-width: 30px; }
.sps-step-line.completed { background: #27ae60; }

/* Result Table */
.sps-result-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sps-result-table th, .sps-result-table td { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; }
.sps-result-table th { color: #666; font-weight: 600; width: 35%; background: #fafafa; }
.sps-result-table td { color: #333; }
.sps-admin-note { background: #fff8e1; border-left: 4px solid #f39c12; padding: 15px 20px; margin: 15px 20px; border-radius: 4px; font-size: 14px; }

@media (max-width: 600px) {
    .sps-row { flex-direction: column; }
    .sps-check-row { flex-direction: column; }
    .sps-form { padding: 20px; }
    .sps-form-header { padding: 20px; }
    .sps-progress-wrap { padding: 15px; }
}
