.toast-container-customer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-customer {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    gap: 10px;

}

.toast-customer-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


.toast-customer-message {
    flex-grow: 1;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.toast-customer-close {
    cursor: pointer;
    font-size: 20px;
    color: #888;
    margin-left: 10px;
}
.toast-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}