/* styles.css */
body {
    font-family: Arial, sans-serif;
}

.floating-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
}

.icon {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.call-float {
    background-color: #34b7f1;
}

.float:hover {
    background-color: #128c7e;
}

.call-float:hover {
    background-color: #007bff;
}

@media (max-width: 600px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float {
        width: 50px;
        height: 50px;
    }

    .icon {
        padding: 8px;
    }
}
