#oms-toaster-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.oms-toast {
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.oms-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.oms-toast-info { background: #0073aa; }
.oms-toast-success { background: #28a745; }
.oms-toast-error { background: #dc3545; }

.oms-toast-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
