/* Additional styles to enhance profile icon visibility */
.profile-icon-enhancement {
    /* Add to style.css or auth-styles.css */
    position: relative;
}

.desktop-navbar .auth-nav-btn {
    position: relative;
    overflow: hidden;
}

.desktop-navbar .auth-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.desktop-navbar .auth-nav-btn i.fas.fa-circle-user {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#auth-status, #mobile-auth-status {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Add a subtle pulse animation to draw attention to the auth button */
@keyframes subtle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 51, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 51, 102, 0); }
}

.desktop-navbar .auth-nav-btn:hover {
    animation: subtle-pulse 2s infinite;
}
