
    /* Popup Form Styling */
    .popup-form {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .popup-content {
        background: #fff;
        padding: 40px 40px; /* Increased padding */
        border-radius: 10px;
        width: 90%;
        max-width: 600px; /* Increased max-width for a larger form */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        text-align: left;
        overflow-y: hidden;
        max-height: 90%; /* Restricts the form height */
        position: relative; /* Ensure the close button is positioned correctly */
    }

    .popup-content h3 {
        margin-bottom: 20px;
        color: #333;
        font-size: 24px; /* Increased font size for heading */
        text-align: center;
    }

    .popup-content label {
        display: block;
        margin: 15px 0 5px;
        font-weight: bold;
        color: #555;
    }

    .popup-content input,
    .popup-content textarea {
        width: 100%;
        padding: 12px; /* Increased padding */
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px; /* Slightly larger text */
        box-sizing: border-box;
    }

    .popup-content textarea {
        resize: vertical;
        min-height: 150px; /* Set minimum height for textarea */
    }

    .popup-content button {
        background: #333;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
        width: 100%;
        font-size: 16px;
    }

    .popup-content button:hover {
        background: #555;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px; /* Larger font size */
        cursor: pointer;
        color: #333;
        font-weight: bold;
        z-index: 1100; /* Ensures the cross button is above the form */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .popup-content {
            width: 90%;
            padding: 30px;
            max-width: 500px;
        }

        .popup-content h3 {
            font-size: 22px;
        }

        .popup-content input,
        .popup-content textarea {
            font-size: 14px;
        }

        .popup-content button {
            font-size: 14px;
            padding: 12px;
        }
    }

    @media (max-width: 480px) {
        .popup-content {
            width: 85%;
            padding: 20px;
            max-width: 400px;
        }

        .popup-content h3 {
            font-size: 20px;
        }

        .popup-content input,
        .popup-content textarea {
            font-size: 14px;
        }

        .popup-content button {
            font-size: 14px;
            padding: 12px;
        }
    }

