        .side-button {
            position: fixed;
            right: -100px; /* Slightly outside the screen */
            top: 50%;
            transform: translateY(-50%) rotate(90deg) scaleX(-1) scaleY(-1); /* Vertically center and rotate */
            background-color: #007bff;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, right 0.5s ease, opacity 0.5s ease;
            opacity: 1;
            visibility: visible; /* Ensure it's visible initially */
        }

        .side-button:hover {
            background-color: #0056b3;
        }

        /* Sliding form style */
        .side-form {
            position: fixed;
            right: -400px;
            bottom: 80px;
            width: 400px;
            height: 50%;
            background-color: white;
            border-left: 1px solid #ddd;
            padding: 20px;
            padding-bottom: 480px;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: right 0.3s ease;
            border-radius:20px;
        }

        /* Form heading */
        .side-form h3 {
            margin-bottom: 20px;
            text-align: center;
            color: #007bff;
        }

        /* Form open class */
        .side-form.open {
            right: 10px;
        }

        /* Close button */
        .close-btn {
            background-color: #dc3545;
            color: white;
            font-weight: bold;
            padding: 6px 15px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        .close-btn:hover {
            background-color: #c82333;
        }

        /* Button disappear animation */
        .side-button.disappear {
            opacity: 0;
            right: -130px; /* Slide the button further right */
            visibility: hidden;
            transition: right 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
        }

        /* Button reappear animation */
        .side-button.reappear {
            opacity: 1;
            right: -100px; /* Bring it back to original position */
            visibility: visible;
            transition: right 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
        }

        /* Adjust the form elements' margin and padding */
        .side-form .form-group {
            margin-bottom: 1rem;
        }

        .side-form .form-control {
            box-shadow: none;
        }

        .side-form button[type="submit"] {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            background-color: #28a745;
            border: none;
            color: white;
            font-weight: bold;
        }

        .side-form button[type="submit"]:hover {
            background-color: #218838;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .side-form {
                width: 100%; /* Full width on small screens */
                height: 60%; /* Increase height for more space */
                bottom: 0;
                
            }
            

            .side-button {
                right: 0px; /* Keep button visible on small screens */
            }

            .side-form h3 {
                font-size: 1.5rem; /* Adjust heading size for smaller screens */
            }
        }

        @media (max-width: 576px) {
            .side-form {
                width: 100%;
                height: 70%; /* Further increase height */
                
            }
            .side-form.open {
            right: 0px;
        }

            .side-button {
                padding: 10px 15px; /* Smaller padding for smaller screens */
                font-size: 0.9rem; /* Reduce font size */
                right:-100px;
            }

            .side-form h3 {
                font-size: 1.25rem; /* Further reduce heading size */
            }

            .close-btn {
                font-size: 0.9rem; /* Smaller close button */
            }

            .side-form button[type="submit"] {
                padding: 8px; /* Reduce padding for submit button */
            }
        }