/* Panel Title Box */
.panel-header {
    background: #7B2FBE;
    padding: 10px 16px;
    border-radius: 6px 6px 0 0;
    border-bottom: 3px solid #5A1FA0;
}

.panel-header .panel-heading-title {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}
/* Instruction Box */
.instruction-box {
    background: #fff3cd;
    border-left: 4px solid #e65100;
    border-radius: 4px;
    padding: 12px 16px;
    margin-top: 12px;
}

.instruction-box .instruction-title {
    margin: 0 0 6px;
    color: #e65100;
    font-weight: 600;
    font-size: 14px;
}

.instruction-box .instruction-text {
    margin: 0 0 4px;
    color: #7a3e00;
    font-size: 13px;
    line-height: 1.6;
}

.instruction-box .instruction-text b {
    color: #7a3e00;
    font-weight: 700;
}

.instruction-box .instruction-note {
    margin: 6px 0 0;
    padding: 8px 10px;
    background: #fdecea;
    border-left: 3px solid red;
    border-radius: 4px;
    color: #7a3e00; 
    font-size: 13px;
}
/* Form Table */
.form-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border: 1px solid #ccc;
}

.form-table td {
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    vertical-align: middle;
}

.form-table td:first-child {
    width: 50%;
}

.form-table tr.alt-row {
    background: #f9f9f9;
}

.form-table .form-input {
    width: 100%;
    max-width: 320px;
}

.form-table .form-status {
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.form-table .form-submit-row {
    text-align: center;
    padding: 16px 12px;
}

/* Submit Button */
.new-btn-submit {
    background: #7B2FBE !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 10px 32px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    width: 120px !important;
}

.new-btn-submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.new-btn-submit:hover:not(:disabled) {
    background: #5A1FA0 !important;
}