.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-message {
    min-width: 300px;
    background: white;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    transform: translateX(100%);
    animation: slideIn 0.5s forwards;
    font-size: 15px;
}

.toast-message.hiding {
    animation: slideOut 0.5s forwards;
}

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

.toast-success {
    background: #28a745;
    color: white;
}

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

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

.media {
    display: block !important;
}