    .bf-form {
        display: flex;
        align-items: center;
        width: 80%;
        position: relative;
    }

    .bf-link {
        background-color: var(--e-global-color-text) !important;
        border-radius: 60px !important;
        flex-direction: row-reverse !important;
        gap: 1rem;
        position: absolute !important;
        left: 0.5rem;
        padding: 8px 24px !important;
    }

    .bf-input {
        flex: 1;
        font-size: 14px;
        border-radius: 60px;
        padding: 1rem 0.5rem 1rem 11rem;
        border: none;
        background: #ffffff;
    }

    .bf-input:focus {
        outline: none;
    }

    .btn-icon-shaped .btn-icon {
        border: none !important;
    }

    @media screen and (max-width: 500px) {
        .bf-form {
            width: 100%;
        }
    }

    @media screen and (max-width: 426px) {
        .bf-link .btn-txt {
            display: none;
        }

        .bf-link {
            width: 50px;
            height: 50px;
        }
    }

    /* Modal Styles */
    .fetchx-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }

    .fetchx-modal-content {
        background-color: #161616;
        margin: 10% auto;
        padding: 30px;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        position: relative;
        direction: rtl;
        text-align: right;
    }

    .fetchx-modal-close {
        color: #aaa;
        float: left;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        position: absolute;
        top: 10px;
        left: 15px;
        line-height: 1;
    }

    .fetchx-modal-close:hover,
    .fetchx-modal-close:focus {
        color: #000;
        text-decoration: none;
    }

    .fetchx-modal-content h2 {
        margin-top: 0;
        margin-bottom: 20px;
        color: #fff;
    }

    .fetchx-form-group {
        margin-bottom: 20px;
    }

    .fetchx-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        color: #fff;
    }

    .fetchx-form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        box-sizing: border-box;
        direction: ltr;
        text-align: left;
    }

    .fetchx-form-group input:focus {
        outline: none;
        border-color: #007cba;
        box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
    }

    .fetchx-form-actions {
        display: flex;
        gap: 10px;
        justify-content: flex-start;
    }

    .fetchx-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
        color: #fff !important;
    }

    .fetchx-btn-primary {
        background-color: var(--wp--preset--color--vivid-green-cyan);
        color: white;
    }

    .fetchx-btn-primary:hover {
        background-color: #005a87;
    }

    .fetchx-btn-secondary {
        background-color: #6c757d;
        color: white;
    }

    .fetchx-btn-secondary:hover {
        background-color: #5a6268;
    }

    .fetchx-success-message {
        text-align: center;
        padding: 20px;
    }

    .fetchx-success-message p {
        margin: 10px 0;
        font-size: 16px;
        color: #28a745;
        font-weight: bold;
    }

    .fetchx-success-message .fetchx-btn {
        margin-top: 20px;
    }

    /* Loading state */
    .fetchx-loading {
        opacity: 0.6;
        pointer-events: none;
    }