/* FRONTEND GLOBAL */

.smp-frontend-form,
.smp-search-wrapper {
    max-width: 650px;
    margin: 20px auto;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.smp-frontend-form *,
.smp-search-wrapper * {
    box-sizing: border-box;
}

.smp-frontend-form h3,
.smp-search-wrapper h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    text-align: center;
}

.smp-frontend-form label,
.smp-search-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.smp-frontend-form input[type="text"],
.smp-frontend-form input[type="number"],
.smp-frontend-form input[type="file"],
.smp-search-form input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 13px;
}

.smp-frontend-form button,
.smp-search-form button,
.smp-pdf-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    border-radius: 4px;
    border: none;
    background: #0073aa;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.smp-frontend-form button:hover,
.smp-search-form button:hover,
.smp-pdf-btn:hover {
    background: #005f8d;
}

.smp-message {
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: #e0ffe0;
    border: 1px solid #8bc34a;
    font-size: 13px;
}

/* SUBJECTS ON FRONTEND */

.smp-section-title {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
}

.smp-section-help {
    font-size: 12px;
    margin: 0 0 8px;
    color: #555;
}

/* list of subject cards */

.smp-subjects-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* each subject card */

.smp-subject-card {
    border-radius: 6px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    padding: 8px 10px;
}

.smp-subject-card-header {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* rows inside card */

.smp-subject-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.smp-subject-row label {
    flex: 1;
    margin-bottom: 0;
}

.smp-subject-name-field {
    flex: 2;
}

.smp-subject-row input[type="text"],
.smp-subject-row input[type="number"] {
    width: 100%;
    padding: 5px 7px;
    margin-top: 3px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 12px;
}

/* marks row adjust a bit smaller text */

.smp-subject-marks-row label {
    min-width: 90px;
}

/* SEARCH RESULT AREA */

.smp-search-result {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.smp-search-result-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.smp-search-result-table th,
.smp-search-result-table td {
    padding: 6px 8px;
    border: 1px solid #ddd;
    font-size: 12px;
}

.smp-search-error {
    color: #b30000;
}

.smp-search-success {
    color: #006400;
}

.smp-subjects-title {
    margin-top: 10px;
    font-weight: 600;
}
