
    .payment-form-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
        max-width: 900px;
        margin: 0 auto;
        background: #fff;
        padding: 30px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .form-error-message {
        background-color: #fee;
        border: 1px solid #fcc;
        border-radius: 4px;
        padding: 15px;
        margin-bottom: 20px;
        color: #c33;
        font-size: 14px;
    }

    .field-error{
        color: #c33;
    }

    .form-error-message strong {
        display: block;
        margin-bottom: 5px;
    }

    .form-success-notification {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border-radius: 4px;
        padding: 12px 20px;
        text-align: center;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        animation: slideIn 0.3s ease-out;
    }

    .notification-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .notification-icon {
        font-size: 24px;
        font-weight: bold;
        flex-shrink: 0;
        animation: scaleIn 0.5s ease-out 0.2s backwards;
    }

    .form-success-notification p {
        margin: 0;
        font-size: 14px;
        flex-grow: 1;
        text-align: left;
    }

    .notification-button {
        background-color: white;
        color: #954900;
        border: none;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .notification-button:hover {
        background-color: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.5);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .payment-form-wrapper h2 {
        color: #954900;
        border-bottom: 3px solid #954900;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .payment-form-wrapper h3 {
        color: #954900;
        font-size: 16px;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .payment-form-wrapper .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .payment-form-wrapper .form-row.full {
        grid-template-columns: 1fr;
    }

    .payment-form-wrapper .form-group {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }

    .payment-form-wrapper label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        font-size: 14px;
    }

    .payment-form-wrapper label .required {
        color: #d9534f;
    }

    .payment-form-wrapper input[type="text"],
    .payment-form-wrapper input[type="email"],
    .payment-form-wrapper input[type="tel"],
    .payment-form-wrapper input[type="number"],
    .payment-form-wrapper select,
    .payment-form-wrapper textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 3px;
        font-size: 14px;
        font-family: inherit;
        box-sizing: border-box;
    }

    .payment-form-wrapper input:focus,
    .payment-form-wrapper select:focus,
    .payment-form-wrapper textarea:focus {
        outline: none;
        border-color: #954900;
        box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
    }

    .payment-form-wrapper .currency-input {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .payment-form-wrapper .currency-input span {
        font-weight: 600;
        color: #954900;
        min-width: 50px;
    }

    .payment-form-wrapper .currency-input input {
        flex: 1;
    }

    .payment-form-wrapper .form-group label input[type="checkbox"] {
        margin-right: 8px;
        width: auto;
        margin-bottom: 0;
    }

    .payment-form-wrapper .form-group label {
        display: flex;
        align-items: center;
        font-weight: normal;
        margin-bottom: 0;
    }

    .payment-form-wrapper .button-group {
        display: flex;
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .payment-form-wrapper button {
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .payment-form-wrapper button[type="submit"] {
        background-color: #954900;
        color: white;
    }

    .payment-form-wrapper button[type="submit"]:hover {
        background-color: #005a87;
    }

    @media (max-width: 768px) {
        .payment-form-wrapper {
            padding: 20px;
        }

        .payment-form-wrapper .form-row {
            grid-template-columns: 1fr;
        }

        .payment-form-wrapper .button-group {
            flex-direction: column;
        }

    .payment-form-wrapper button {
        width: 100%;
        }
    }

    
    .rental-application-form {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
        max-width: 900px;
        margin: 0 auto;
        background: #fff;
        padding: 30px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .form-error-message {
        background-color: #fee;
        border: 1px solid #fcc;
        border-radius: 4px;
        padding: 15px;
        margin-bottom: 20px;
        color: #c33;
        font-size: 14px;
    }

    .form-error-message strong {
        display: block;
        margin-bottom: 5px;
    }

    .form-success-notification {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border-radius: 4px;
        padding: 12px 20px;
        text-align: center;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 20px;
        animation: slideIn 0.3s ease-out;
    }

    .notification-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .notification-icon {
        font-size: 24px;
        font-weight: bold;
        flex-shrink: 0;
        animation: scaleIn 0.5s ease-out 0.2s backwards;
    }

    .form-success-notification p {
        margin: 0;
        font-size: 14px;
        flex-grow: 1;
        text-align: left;
    }

    .notification-button {
        background-color: white;
        color: #954900;
        border: none;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .notification-button:hover {
        background-color: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.5);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .rental-application-form h2 {
        color: #954900;
        border-bottom: 3px solid #954900;
        padding-bottom: 10px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .rental-application-form h3 {
        color: #954900;
        font-size: 16px;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .rental-application-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .rental-application-form .form-row.full {
        grid-template-columns: 1fr;
    }

    .rental-application-form .form-row.three-col {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .rental-application-form .form-group {
        margin-bottom: 0;
    }

    .rental-application-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        font-size: 14px;
    }

    .rental-application-form label .required {
        color: #d9534f;
    }

    .rental-application-form input[type="text"],
    .rental-application-form input[type="email"],
    .rental-application-form input[type="date"],
    .rental-application-form input[type="tel"],
    .rental-application-form input[type="number"],
    .rental-application-form select,
    .rental-application-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 3px;
        font-size: 14px;
        font-family: inherit;
        box-sizing: border-box;
    }

    .rental-application-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .rental-application-form input[type="text"]:focus,
    .rental-application-form input[type="email"]:focus,
    .rental-application-form input[type="date"]:focus,
    .rental-application-form input[type="tel"]:focus,
    .rental-application-form input[type="number"]:focus,
    .rental-application-form select:focus,
    .rental-application-form textarea:focus {
        outline: none;
        border-color: #954900;
        box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
    }

    .rental-application-form .radio-group,
    .rental-application-form .checkbox-group {
        margin-top: 10px;
    }

    .rental-application-form input[type="radio"],
    .rental-application-form input[type="checkbox"] {
        margin-right: 8px;
        cursor: pointer;
    }

    .rental-application-form .radio-option,
    .rental-application-form .checkbox-option {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .rental-application-form .radio-option label,
    .rental-application-form .checkbox-option label {
        margin-bottom: 0;
        font-weight: normal;
        display: inline;
        margin-left: 5px;
    }

    .rental-application-form .fee-notice {
        background-color: #fcf8e3;
        border: 1px solid #faebcc;
        border-radius: 4px;
        padding: 15px;
        margin-bottom: 20px;
        color: #8a6d3b;
    }

    .rental-application-form .fee-notice strong {
        color: #000000;
    }

    .rental-application-form .info-box {
        background-color: #f0f7ff;
        border-left: 4px solid #954900;
        padding: 15px;
        margin-bottom: 20px;
    }

    .rental-application-form .button-group {
        display: flex;
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .rental-application-form .button-group.income-button-group {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .rental-application-form button {
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .rental-application-form button[type="submit"] {
        background-color: #954900;
        color: white;
    }

    .rental-application-form button[type="submit"]:hover {
        background-color: #005a87;
    }

    .rental-application-form button[type="reset"] {
        background-color: #666;
        color: white;
    }

    .rental-application-form button[type="reset"]:hover {
        background-color: #555;
    }

    .rental-application-form button.add-btn {
        background-color: #954900;
        color: white;
        padding: 10px 20px;
        font-size: 14px;
    }

    .rental-application-form button.add-btn:hover {
        background-color: #218838;
    }

    .rental-application-form button.remove-btn {
        background-color: #dc3545;
        color: white;
        padding: 8px 16px;
        font-size: 13px;
        margin-top: 15px;
    }

    .rental-application-form button.remove-btn:hover {
        background-color: #c82333;
    }

    .income-source {
        padding: 15px;
        background-color: #f9f9f9;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        margin-bottom: 20px;
    }

    .income-source.additional {
        margin-top: 20px;
    }

    .income-number {
        font-weight: 600;
        color: #954900;
    }

    .asset-source {
        padding: 15px;
        background-color: #f9f9f9;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        margin-bottom: 20px;
    }

    .asset-source.additional {
        margin-top: 20px;
    }

    .asset-number {
        font-weight: 600;
        color: #954900;
    }

    .button-group.asset-button-group {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .rental-application-form .form-error {
        color: #d9534f;
        font-size: 13px;
        margin-top: 5px;
        display: none;
    }

    .rental-application-form .error input,
    .rental-application-form .error select,
    .rental-application-form .error textarea {
        border-color: #d9534f;
    }

    .field-error {
        display: none;
    }

    @media (max-width: 768px) {
        .rental-application-form {
            padding: 20px;
        }

        .rental-application-form .form-row {
            grid-template-columns: 1fr;
        }

        .rental-application-form .form-row.three-col {
            grid-template-columns: 1fr;
        }

        .rental-application-form .button-group {
            flex-direction: column;
        }

        .rental-application-form button {
            width: 100%;
        }
    }

    .loading-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .loading-overlay.active {
        display: flex;
    }

    .spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #954900;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Form Preview Page Styles */
    .cmc-form-preview-wrap {
        background: #fff;
    }

    .cmc-form-preview-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .cmc-form-content {
        background: #fff;
        padding: 20px;
    }

    .cmc-form-content form {
        width: 100%;
        max-width: 1000px;
    }

    .cmc-form-content input[type="text"],
    .cmc-form-content input[type="email"],
    .cmc-form-content input[type="tel"],
    .cmc-form-content input[type="number"],
    .cmc-form-content input[type="date"],
    .cmc-form-content textarea,
    .cmc-form-content select {
        width: 100%;
        padding: 8px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: inherit;
        font-size: 14px;
    }

    .cmc-form-content label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .version-badge {
        display: inline-block;
        background-color: #e8f5e9;
        color: #2e7d32;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 600;
    }

    .postbox {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .postbox .hndle {
        background-color: #f5f5f5;
        border-bottom: 1px solid #ddd;
        padding: 10px 12px;
        margin: 0;
        cursor: move;
    }

    .postbox .inside {
        padding: 12px;
    }

    code {
        background-color: #f5f5f5;
        padding: 2px 6px;
        border-radius: 3px;
        font-size: 13px;
        font-family: 'Courier New', monospace;
    }

    .cmc-toolbar {
        margin: 20px 0;
    }