/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    background-color: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out forwards;
    border-left: 5px solid #ccc;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(100%);
    cursor: pointer;
}

.toast-message.success {
    border-left-color: #2e7d32;
}

.toast-message.error {
    border-left-color: #c62828;
}

.toast-message.warning {
    border-left-color: #f57c00;
}

.toast-message.info {
    border-left-color: #0288d1;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message.success .toast-icon {
    color: #2e7d32;
}

.toast-message.error .toast-icon {
    color: #c62828;
}

.toast-message.warning .toast-icon {
    color: #f57c00;
}

.toast-message.info .toast-icon {
    color: #0288d1;
}

.toast-content {
    flex: 1;
}

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

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

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

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast-message.hiding {
    animation: fadeOut 0.3s ease-in forwards;
}