.probonoform-confirm-settings {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.probonoform-confirm-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.probonoform-confirm-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.probonoform-confirm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.probonoform-confirm-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.probonoform-confirm-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.probonoform-confirm-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.probonoform-confirm-toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.probonoform-confirm-hint {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.probonoform-confirm-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.probonoform-direct-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.probonoform-confirm-input {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    color: #333;
}

.probonoform-confirm-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.probonoform-input-error {
    border-color: #e53935;
}

.probonoform-input-error:focus {
    border-color: #e53935;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
}

.probonoform-confirm-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.probonoform-confirm-guide {
    display: flex;
    flex-direction: column;
}

.probonoform-confirm-preview-box {
    display: flex;
    flex-direction: column;
}

.probonoform-confirm-preview-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

.probonoform-confirm-preview {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    min-height: 300px;
    padding: 16px;
    overflow-y: auto;
}

.probonoform-confirm-preview-empty {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 120px;
}

.probonoform-confirm-preview-content {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.probonoform-confirm-preview-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    text-align: center;
}

.probonoform-confirm-preview-message {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    text-align: center;
}

.probonoform-confirm-preview-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.probonoform-confirm-preview-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.probonoform-confirm-preview-row:last-child {
    border-bottom: none;
}

.probonoform-confirm-preview-row .probonoform-confirm-preview-label {
    background: #f8f9fa;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    border-radius: 0;
}

.probonoform-confirm-preview-value {
    padding: 12px;
    font-size: 14px;
    color: #333;
    background: white;
}

.probonoform-confirm-preview-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.probonoform-confirm-back-btn {
    background: #f0f0f1;
    color: #50575e;
    border: 1px solid #ccd0d4;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.probonoform-confirm-back-btn:hover {
    background: #e0e0e0;
    border-color: #999;
}

.probonoform-confirm-submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.probonoform-confirm-submit-btn:hover {
    background: #5a6fd6;
}

.probonoform-direct-preview-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.probonoform-direct-preview-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.probonoform-direct-preview-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.probonoform-direct-preview-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.probonoform-direct-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.probonoform-direct-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.probonoform-direct-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.probonoform-direct-success .probonoform-direct-icon {
    background: #2e7d32;
    color: white;
}

.probonoform-direct-error .probonoform-direct-icon {
    background: #c62828;
    color: white;
}

@media screen and (max-width: 1200px) {
    .probonoform-confirm-settings {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .probonoform-confirm-field-row {
        grid-template-columns: 1fr;
    }
}