/* Login Callout Styles */
.login-callout {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-family: 'Arial', sans-serif;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
}

/* Debug: Make callout visible for testing */
.login-callout.debug {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.login-callout.show {
    opacity: 1;
    pointer-events: auto;
}

.callout-bubble {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.callout-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

/* Arrow pointing up */
.callout-bubble.arrow-up::before {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: #28a745;
}

/* Arrow pointing down */
.callout-bubble.arrow-down::before {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: #28a745;
}

/* Arrow pointing left */
.callout-bubble.arrow-left::before {
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: #28a745;
}

/* Arrow pointing right */
.callout-bubble.arrow-right::before {
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: #28a745;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
}

/* Power button highlight animation */
.power-button-highlight {
    animation: highlightPulse 1s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        transform: scale(1);
        color: inherit;
    }
    50% {
        transform: scale(1.3);
        color: #ff6b6b;
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    100% {
        transform: scale(1);
        color: inherit;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .callout-bubble {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* Hide callout on very small screens */
@media (max-width: 480px) {
    .login-callout {
        display: none;
    }
}
