/* Contact Clinic Shortcode Styling */
.contact-clinic-wrapper {
    margin: 20px 0;
}

.contact-clinic-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-clinic-buttons .button {
    padding: 0;
    margin: 0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 160px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
}

.contact-clinic-buttons .clinic-detail-btn {
    background-color: #00c5d7;
    color: white;
}

.contact-clinic-buttons .clinic-detail-btn:hover {
    background-color: #00a8b8;
    transform: translateY(-2px);
}

.contact-clinic-buttons .clinic-call-btn {
    background-color: #bb0303;
    color: white;
}

.contact-clinic-buttons .clinic-call-btn:hover {
    background-color: #a00202;
    transform: translateY(-2px);
}

@media only screen and (max-width: 48em) {
    .contact-clinic-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }

    .contact-clinic-buttons .button {
        flex: 1;
        width: auto;
        min-width: 0;
    }
}