/* css/components/alerts.css */

#alert-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none; /* Prevents the invisible container from blocking clicks */
}

.nebula-alert {
    background: #0f172a;
    border-left: 4px solid #4cc9f0;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-family: 'Courier New', Courier, monospace;
    animation: slideInRight 0.3s ease-out;
    opacity: 0.95;
    pointer-events: auto; /* Keeps the actual alert clickable if we want to add close buttons later */
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 0.95; }
}