.p-10{
  padding: 10px !important;
}
.txt-white{
  color: #ffffff !important;
}

.left-sidebar li a.active {
    background-color: #ee8e21 !important;
    color: #fff;
    font-weight: 600;
}

.sidebar-menu li a.active i {
    color: #fff;
}



.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #33cc33; /* Change this to your preferred color */
    color: white;
    padding: 20px 20px;
    border-radius: 50%; /* Adjust this for a more or less rounded button */
    border: 2px solid #023102;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    animation: shake 2s infinite;
    z-index: 1000;
}
.whatsapp-button:hover {
    background-color: #023102; /* Change this for a different hover color */
    border: 2px solid #33cc33 !important;
    color: #33cc33 !important;
}
.whatsapp-button i {
    margin-right: 8px; /* Space between icon and text */
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
