/* Premium Auth Button Styles (Elementor Widget) */
.elementor-widget-shortcode .elementor-button.mockalay-auth-main-btn {
    font-family: 'Hind Siliguri', sans-serif !important;
    font-weight: 700 !important;
    background-color: #FF8C00 !important;
    color: #FFFFFF !important;
    border-radius: 8px !important;
    border: 2px solid #FF8C00 !important;
    min-width: 160px !important;
    transition: all 0.3s ease !important;
}

.elementor-widget-shortcode .elementor-button.mockalay-auth-main-btn:hover {
    background-color: #FFFFFF !important;
    color: #FF8C00 !important;
    transform: scale(1.05); /* Slightly less aggressive hover */
    border-color: #FF8C00 !important;
}

/* Dropdown Container */
.mockalay-auth-dropdown {
    position: relative;
    display: inline-block;
}

/* The dynamically created dropdown menu */
body > .mockalay-dropdown-clone {
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 20px -5px rgba(0,0,0,0.15);
    z-index: 99999;
    border-radius: 12px;
    border: 1px solid #e0e4e8;
    padding: 8px;
    font-family: 'Hind Siliguri', sans-serif !important;
    overflow: hidden;
}

/* Common style for all dropdown links */
body > .mockalay-dropdown-clone a.dropdown-item {
    color: #333333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0;
}

/* Remove text decoration on hover */
body > .mockalay-dropdown-clone a.dropdown-item:hover {
    text-decoration: none !important;
}

/* Hover effect for Dashboard and Profile links */
body > .mockalay-dropdown-clone a.dashboard-link:hover,
body > .mockalay-dropdown-clone a.profile-link:hover {
    background-color: #FFF5E5 !important; /* Lighter orange */
    color: #0A192F !important;
}

/* Special style for the Logout link */
body > .mockalay-dropdown-clone a.logout-link {
    color: #dc3545 !important;
    margin-top: 5px;
    border-top: 1px solid #f0f0f0;
}

/* Hover effect for Logout link */
body > .mockalay-dropdown-clone a.logout-link:hover {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

/* Fix for extra space below header shortcode button */
.elementor-widget-shortcode p {
    margin-bottom: 0;
}