@import url(./variables.css);

/* Contact Buttons Styling */
.dls-contact-buttons-container {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.dls-contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.9;
    padding: 12px;
}

.dls-contact-button:hover {
    transform: scale(1.1);
    opacity: 1;
}

.dls-contact-button svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.dls-contact-button span {
    font-size: 10px;
    text-align: center;
    line-height: 1;
}

/* WhatsApp Button */
.dls-whatsapp-button {
    background-color: #25D366;
}

/* Call Button */
.dls-call-button {
    background-color: var(--color-primary);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .dls-contact-buttons-container {
        right: 10px;
    }
    
    .dls-contact-button {
        width: 50px;
        height: 50px;
    }
    
    .dls-contact-button svg {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
    }
    
    .dls-contact-button span {
        font-size: 8px;
    }
}

/* When viewing on small mobile devices, make buttons smaller */
@media screen and (max-width: 480px) {
    .dls-contact-button {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
} 