.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    height: 44px !important;
    background-color: white;
    border-color: black;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.dropdown-toggle {
    background-color: white !important;
    border-width: 1px !important;
    border-color: black !important;
}

.dropdown-toggle:focus {
    border: none !important;
    outline: none !important;
}

.dropdown-toggle:target {
    border: none !important;
    outline: none !important;
}

.bootstrap-select:focus {
    border: none !important;
    outline: none !important;
}

.whatsapp-button {
    position: fixed; /* Fixed position to float */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #25d366; /* WhatsApp green color */
    color: #fff; /* Text color */
    border-radius: 50px; /* Rounded button */
    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size */
    text-align: center; /* Centered text */
    z-index: 1000; /* High z-index to stay on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Shadow for a nice effect */
    display: flex; /* Flexbox for icon and text alignment */
    align-items: center; /* Center items vertically */
    cursor: pointer; /* Pointer cursor */
}
.whatsapp-button img {
    width: 24px; /* WhatsApp icon size */
    height: 24px;
    margin-right: 10px; /* Space between icon and text */
}

.delete-button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin: 20px;
    transition: background-color 0.3s;
}

.delete-button:hover {
    background-color: #ff1a1a;
}
