/* Universal Notifications */
#notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.notification--success {
    background-color: #6e8c70;
    color: #fff;
}

.notification--error {
    background-color: #b02500;
    color: #fff;
}

.notification--info {
    background-color: #c0622a;
    color: #fff;
}

.notification-icon {
    font-weight: bold;
    font-size: 16px;
}

.notification.slideout {
    animation: slideOut 0.3s ease-in;
}

/* Busy/Loading Indicator */
#busy-indicator {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    background: rgba(43, 34, 19, 0.92);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 11000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#busy-indicator.active {
    display: flex;
}

.busy-spinner {
    font-size: 16px;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(400px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(400px);
    }
}