
   .toast {
    position: relative; position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #f3f4f6;
    max-width: 300px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
    color: #fff;
    font-size: 15px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left: 4px solid rgb(208, 254, 202); /* Green border for success */
    background-color: #4CB151;
}

.toast.error {
    border-left: 4px solid rgb(254 202 202); /* Red border for error */
    background-color: #FE5253;
}

.toast i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: #fff;
}


@media (max-width: 768px) {
    
    #othersButton1{
        font-size: 12px;
        padding: 6px;    
        display: inline-flex !important;
    }
}


@media (max-width: 500px) {
   .find-btn-name{
    display: none;
   }

   #othersButton1{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex !important;
    align-items: center;
}
#othersButton{
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
}

.locate-btn-name{
   display: none;
}
}

/* @media (max-width: 340px) {

} */