.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
}

.toast {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 350px;
    animation: slideIn 0.3s ease-out;
}

.toast-success {
    border-left: 4px solid #34D399;
}

.toast-error {
    border-left: 4px solid #EF4444;
}

.toast-mascot {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.mascot-happy {
    animation: bounce 1s infinite;
}

.mascot-sad {
    animation: shake 0.5s infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}
