        /* Login Modal CSS */
        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
			z-index: 1000; /* High z-index to appear on top */
        }
        
        .modal-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            width: 300px;
            text-align: center;
        }

        .modal-content h2 {
            margin-bottom: 20px;
        }

        input[type="text"], input[type="password"], input[type="email"] {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .modal-content button {
            padding: 10px;
            border: none;
            border-radius: 4px;
            width: 100%;
            margin: 10px 0;
            cursor: pointer;
        }

        .modal-content button:hover {
            background-color: #218838;
        }

        .modal-footer {
            margin-top: 10px;
        }

        .modal-footer a {
            color: #007bff;
            cursor: pointer;
            display: inline-block;
            margin: 5px 0;
        }
        
        /* Remember Me Checkbox */
        .remember-me {
            display: flex;
            align-items: center;
            justify-content: left;
            margin: 10px 0;
        }

        .remember-me label {
            margin-left: 5px;
            font-size: 0.9em;
        }