body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
    color: inherit;
    background: inherit;
}

h1, h2 {
    color: inherit;
}

input[type="email"], input[type="tel"], input[type="text"], input[type="password"],
textarea, select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid;
    border-radius: 0;
    box-sizing: border-box;
    background: inherit;
    color: inherit;
}

button {
    padding: 12px 20px;
    background: ButtonFace;
    color: ButtonText;
    border: 1px solid ButtonBorder;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: Highlight;
    color: HighlightText;
}

/* === MENU BUTTONS - Restored original positioning & size === */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: ButtonFace;
    border: 1px solid ButtonBorder;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.menu-btn img {
    width: 32px;
    height: 32px;
}

.user-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: ButtonFace;
    border: 1px solid ButtonBorder;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.user-btn img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Overlays & boxes */
.menu-overlay, .user-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}
.menu-overlay.show, .user-overlay.show { display: flex; }

.menu-box, .user-box {
    background: Canvas;
    padding: 30px;
    border: 1px solid CanvasText;
    width: 280px;
    color: CanvasText;
}

.menu-box a, .user-box a {
    display: block;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
}

.strength-meter {
    height: 8px;
    background: #ddd;
    margin: 8px 0 4px 0;
    border: 1px solid;
    overflow: hidden;
}
.strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    background: currentColor;
}

header, footer {
    width: 100%;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding: 15px 20px;
    box-sizing: border-box;
}

header {
    border-bottom: 1px solid;
    margin-bottom: 20px;
}

footer {
    border-top: 1px solid;
    margin-top: 40px;
    font-size: 0.9em;
    color: inherit;
}

p[style*="color:green"] { background: #d4edda; color: #155724; padding: 10px; }
p[style*="color:red"]   { background: #f8d7da; color: #721c24; padding: 10px; }