.wiz-decision-wrap {
    padding: 16px;
    display: flex;
    justify-content: center;
}

.wiz-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.wiz-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.wiz-loading {
    font-size: 18px;
    opacity: 0.8;
    padding: 12px 0;
}

.wiz-section {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.wiz-section:last-of-type {
    border-bottom: none;
}

.wiz-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 10px 0;
    align-items: flex-start;
}

.wiz-label {
    flex: 0 0 120px;
    font-size: 14px;
    color: #555;
    padding-top: 1px;
}

.wiz-value {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    word-break: break-word;
}

/* Long text fields expand to full content (no max-height clipping). */
.wiz-row-request .wiz-long-text {
    white-space: pre-wrap;
}

.wiz-pdf-link {
    display: inline-block;
    padding: 6px 12px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.wiz-pdf-link:hover {
    background: #d2e3fc;
}

.wiz-value.wiz-link {
    color: #1a73e8;
    text-decoration: underline;
    font-size: 14px;
}

.wiz-value.wiz-link:hover {
    color: #0d47a1;
}

.wiz-value.wiz-plain {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

@media (max-width: 400px) {
    .wiz-label {
        flex: 0 0 100%;
    }
}

.wiz-field {
    margin-top: 16px;
}

.wiz-field .wiz-input,
.wiz-field .wiz-label2 {
    text-align: left;
    width: 100%;
}

.wiz-label2 {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

/* Decision select – colored by selection */
#wizDecisionSelect.wiz-approved {
    background-color: #d4edda;
}

#wizDecisionSelect.wiz-approved-modified {
    background-color: #c8e6c9;
}

#wizDecisionSelect.wiz-denied {
    background-color: #f8d7da;
}

#wizDecisionSelect.wiz-more-info {
    background-color: #fff3cd;
}

#wizDecisionSelect option[value="Approved"] {
    background-color: #d4edda;
}

#wizDecisionSelect option[value="Approved - Modified"] {
    background-color: #c8e6c9;
}

#wizDecisionSelect option[value="Denied"] {
    background-color: #f8d7da;
}

#wizDecisionSelect option[value="Need More Info"] {
    background-color: #fff3cd;
}

.wiz-input {
    width: 100%;
    font-size: 15px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d8d8d8;
    outline: none;
    box-sizing: border-box;
}

.wiz-input:focus {
    border-color: #999;
}

.wiz-btn {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: #1f6feb;
    color: white;
}

.wiz-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wiz-msg {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 16px;
}

.wiz-error {
    background: #ffe8e8;
    border: 1px solid #ffb3b3;
}

.wiz-success {
    background: #e9fff0;
    border: 1px solid #a8f0bf;
}