﻿/* --- SHARED --- */
.section > h5,
.review-title {
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 14px;
    padding-bottom: 4px;
    border-bottom: 2px ridge rgba(122, 193, 66, 0.2);
    color: #2a2a2a;
}

.section-title {
    color: #2a2a2a;
    font-weight: 700;
}

.form-group > label {
    margin-bottom: 4px !important;
}

.form-group > .form-control,
.form-group > .select-wrap,
.form-group > .radio-group,
.form-group > .input-group {
    margin-top: 0 !important;
}

.action-button {
    margin-top: 20px;
    padding: 10px 22px;
    border-radius: 4px;
}

/* --- CREATE SUBMISSION --- */

.form-submission-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 40px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
    font-family: "Segoe UI", Arial, sans-serif;
    color: #222;
    line-height: 1.35;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        font-size: 0.82rem;
        font-weight: 600;
        color: #444;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-bottom: 4px;
    }

.form-control{
    font-size: 0.9rem;
    padding: 6px 8px;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fafafa;
}

.form-group div {
    margin-top: 6px;
}

.section {
    margin-bottom: 32px;
}

@media print {
    .page-container {
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .section {
        page-break-inside: avoid;
    }
}

.new-submission-button {
    background: #7AC142;
    color: white;
}

.removal-of-designation-button {
    background: transparent;
    border: 1px solid #7AC142;
    color: #7AC142;
}

    .removal-of-designation-button:hover {
        background: #7AC142;
        color: white;
    }

#reviewButton {
    background: #7AC142;
    color: white;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 0;
}

.checkbox-wrapper input[type="hidden"] {
    display: none;
}


/* --- REVIEW SUBMISSION --- */
.review-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 40px;
    background: #f5f5f5;
}

.review-section {
    margin-bottom: 32px;
    padding-bottom: 12px;
}

.review-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ccc;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

    .review-grid.single-column {
        grid-template-columns: 1fr;
    }

    .review-grid span {
        font-size: 0.75rem;
        font-weight: 700;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-bottom: 3px;
        display: block;
    }

    .review-grid div div,
    .review-grid ul {
        font-size: 0.95rem;
        color: #222;
        padding: 4px 0;
    }

#review_OtherDocumentsFormFiles li {
    padding: 6px 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    margin-bottom: 4px;
    border-radius: 3px;
}

#reviewBackButton {
    background: #333;
    color: white;
}

#formSubmitButton {
    background: #7AC142;
    color: white;
}