.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #333;
    border-left: 6px solid #333;
    padding: 12px 16px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    border-radius: 4px;
    min-width: 220px;
    font-family: Arial, sans-serif;
}

.custom-toast.success {
    border-color: #4CAF50;
}

.custom-toast.error {
    border-color: #F44336;
}

.custom-toast.warning {
    border-color: #FFC107;
}

.custom-toast.info {
    border-color: #2196F3;
}

.custom-toast .toast-icon {
    margin-right: 10px;
}