/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.user-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.user-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--e-global-color-d49ac81);
    line-height: 1.4;
}

/* Logged-out (Login / Logout) - outline */
.user-buttons .btn-login,
.user-buttons .btn-logout {
    background-color: transparent;
    color: var(--e-global-color-d49ac81);
}

/* Logged-in (Register / My Account) - solid */
.user-buttons .btn-register,
.user-buttons .btn-account {
    background-color: var(--e-global-color-d49ac81);
    color: #fff;
}

/* Hover effect for all buttons */
.user-buttons a:hover {
    background-color: var(--e-global-color-332724a); 
    color: #fff;
    border-color: var(--e-global-color-332724a);
}

/* Font Awesome icon spacing */
.user-buttons i {
    margin-right: 8px;
}
