.login-clickable {
    cursor: pointer;
    font-size: 24px;
}
.login-popup-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Always on top */
}
.login-popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}
.login-close-btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.login-close-btn:hover {
    background: #bbb;
}

.login-tabs {
    display: flex;
    margin-bottom: 15px;
}
.login-tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: #eee;
    font-weight: bold;
}
.login-tabs button.active {
    background: #1E5631;
    color: white;
}
.login-tab-content input {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-tab-content button {
    width: 100%;
    padding: 10px;
    background: #1E5631;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}
.login-tab-content button:hover {
    background: #1E5631;
}
.login-error {
    color: red;
    font-size: 0.85em;
    display: none;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
