/* --- NID Form Modal Custom Style Extensions --- */
.large-modal {
    width: 750px !important;
    max-width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    background-color: #12141c;
    border: 1px solid #222530;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #1f2330;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body-scroll {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

.form-section {
    background-color: #161922;
    border: 1px solid #1f2330;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Upload Elements */
.upload-grid {
    display: flex;
    gap: 20px;
    align-items: center;
}

.upload-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-box-wrapper label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

.upload-circle {
    width: 110px;
    height: 110px;
    border: 2px dashed #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    color: #64748b;
    cursor: pointer;
    background-color: #0f111a;
}

.upload-rect {
    height: 110px;
    border: 2px dashed #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    background-color: #0f111a;
}

/* Inputs Structure */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group.full-width {
    grid-column: span 2;
}

.input-group label {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #64748b;
    font-size: 14px;
}

.input-wrapper input, .input-group textarea {
    width: 100%;
    padding: 12px 12px 12px 42px;
    background-color: #0f111a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: border 0.2s;
}

.input-group textarea {
    padding: 12px;
    resize: none;
}

.input-wrapper input:focus, .input-group textarea:focus {
    border-color: #1a5cff;
    outline: none;
}

/* Modal Footer Custom layout */
.modal-footer {
    padding: 15px 25px;
    border-top: 1px solid #1f2330;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #12141c;
}

.fee-text {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.footer-buttons {
    display: flex;
    gap: 10px;
}

.btn-submit {
    background-color: #1a5cff;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-cancel {
    background-color: #222530;
    color: #94a3b8;
    border: 1px solid #334155;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit:hover { background-color: #0044ff; }
.btn-cancel:hover { background-color: #2d3142; color: white; }