 .password-overlay-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            margin: 0;
            background-color: #f4f4f4;
        }

        /* The Gatekeeper Overlay */
        #password-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .login-box {
            text-align: center;
            padding: 2rem;
            max-width: 400px;
            width: 90%;
        }

        .login-box input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }

        .login-box button {
            margin-top: 15px;
            width: 100%;
            padding: 12px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }

        .login-box button:hover {
            background-color: #333;
        }

        #error-msg {
            color: #d9534f;
            margin-top: 10px;
            font-size: 14px;
            display: none;
        }

        /* Hidden content state */
        #protected-content {
            display: none;
            padding: 40px;
        }