/* global.css or any global stylesheet */
.toast-success {
    background-color: #4caf50 !important;
    color: white !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
}
  
.toast-error {
    background-color: #f44336 !important;
    color: white !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
}

.request-message{
    display: -webkit-inline-box;
    line-clamp: 2;
    width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}