.material-icons {
    font-size: 1.2rem; /* Adjust size */
    vertical-align: middle; /* Align with text */
    color: #333; /* Match text-color-dark */
    transition: color 0.3s ease;
}

.list-inline-item a:hover .material-icons {
    color: #007bff; /* Match text-color-hover-primary */
}


/* whatsappbutton */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    display: flex;
    align-items: center;
    text-decoration: none !important; /* Ensure no underline */
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover,
.whatsapp-button:active {
    text-decoration: none !important; /* Prevent underline on hover and active states */
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .whatsapp-button i {
        font-size: 20px;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 30px;
    }

    .whatsapp-button i {
        font-size: 18px;
        margin-right: 5px;
    }
}
