@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif !important;
}

.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}
.toast-success {
    background-color: #16a34a; /* green-600 */
    color: white;
}
.toast-error {
    background-color: #dc2626; /* red-600 */
    color: white;
}
@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
