/* BION Service Application - Main Stylesheet */

/* Base Styles */
* {
    box-sizing: border-box;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transform: translateX(0);
    transition: transform 0.3s ease;
    animation: slideIn 0.3s ease;
}

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

.toast--success {
    background-color: #22c55e;
    color: white;
}

.toast--error {
    background-color: #ef4444;
    color: white;
}

.toast--info {
    background-color: #3b82f6;
    color: white;
}

/* Blazor Loading */
#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fef3c7;
    padding: 1rem;
    text-align: center;
    border-top: 2px solid #f59e0b;
}

#blazor-error-ui.show {
    display: block;
}
