/*
Theme Name: The Psychic Multiverse
Theme URI: https://psychicmultiverse.com/
Template: hello-elementor
Author: Semicolon Technologies
Author URI: https://semicolontechnology.com/
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.0.1775142046
Updated: 2026-04-02 15:00:46

*/

/* USER MENU */
.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
}

.logout-btn {
    background: red;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

/* LOGIN BUTTON */
.login-wrapper button {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
}

/* POPUP */
.login-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.login-box {
    background: #fff;
    width: 300px;
    padding: 20px;
    margin: 10% auto;
    border-radius: 8px;
    position: relative;
}

.login-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.login-box input[type="submit"] {
    background: #d4a017;
    color: #fff;
    border: none;
}

/* CLOSE BUTTON */
.close-popup {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
}