
.radiation-doc-profile { 
    border: 2px solid #e0e0e0; 
    border-radius: 10px;       
    padding: 15px;    
    margin-bottom: 20px;       

} 

.radiation-doc-profile a {
    color: white !important;
    text-decoration: none;
}



 
.button-row { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    flex-wrap: nowrap; 
} 
 
/* Hide both buttons by default */ 
.contact-button, 
.btn-whatsapp { 
    display: none; 
} 
 
/* Show both on mobile (below 768px) */ 
@media (max-width: 767px) { 
    .contact-button, 
    .btn-whatsapp { 
        display: inline-flex; 
        align-items: center; 
        justify-content: center; 
        border: none; 
        padding: 10px 16px; 
        border-radius: 5px; 
        font-size: 16px; 
        text-decoration: none; 
        font-weight: bold; 
        cursor: pointer; 
        flex: 1; 
        text-align: center; 
    } 
 
    .contact-button { 
        background-color: #131369; 
        color: white; 
        padding-bottom: 5px; 
    } 
 
    .btn-whatsapp { 
        background-color: #25D366; 
        color: white; /* ✅ Corrected here */
        transition: background-color 0.3s ease; 
    } 
 
    .text-center.button-row a { 
        color: white; 
    }   
 
    /* Adjust for very small screens */ 
    @media (max-width: 376px) { 
        .button-row { 
            flex-wrap: nowrap; 
            gap: 8px; 
        } 
 
        .contact-button, 
        .btn-whatsapp { 
            font-size: 14px; 
            padding: 10px 16px; 
            flex: 1; 
            min-width: 0; 
        } 
    } 
} 


