/**
 * Cocktail User Bar CSS
 * Basic styles for the user bar functionality
 */



/* Empty state messages */
.user-bar-empty,
.user-bar-login-notice {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s infinite;
}

