.texto{
    font-size: 14px;
    font-weight: 600;
}

/* Historial del Paciente & ODONTOGRAMA */
.page-header1{
    margin: 25px 0 25px 0 !important;
    text-align: center;
    background-color: #95cfed;
    font-size: 18px;
    font-weight: 600;
}

.table-client {
    width: 100%;  
}
.table-client tr td {
    border-bottom: 1px solid #ddd;
    padding: 10px 0px 0px 0px;
}
.datos{
    background-color: #00000057;
    width: 150px;
}
.datos2{
    border: 1px solid #00000057;
    width: auto;
    padding-left: 10px !important;
}
.teeth-chart {
    margin-top: 30px;
    text-align: center;
}
.teeth-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.tooth-container {
    position: relative;
    margin: 3px;
    text-align: center;
}
.tooth-img {
    height: 55px;
    width: auto;
    transition: transform 0.2s;
}
.tooth-img:hover {
    transform: scale(1.2);
}
.tooth-number {
    display: block;
    font-size: 10px;
    font-weight: bold;
    margin-top: 2px;
}
.treated {
    border: 2px solid red;
    border-radius: 5px;
    padding: 2px;
    position: relative;
}
.section-label {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    background-color: #f0f0f0;
    padding: 5px;
    border-radius: 5px;
}

/* Nuevos estilos para las imágenes superpuestas */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.treatment-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Estilos responsive */

/* estilos desde 992px arriba */
@media (min-width: 1200px) {
    .tooth-container {       
        width: 45px;
    } 
    .tooth-img {
        height: 65px;
    }  
}
@media (min-width: 992px) {
    .tooth-container {       
        width: 45px;
    } 
    
}

/* FIN estilos desde 992px arriba */


@media (max-width: 992px) {    
    .tooth-img {
        height: 35px;
    }
}
@media (max-width: 768px) {
    .tooth-img {
        height: 30px;
    }
}
@media (max-width: 576px) {
    .tooth-container {
        margin: 2px;
    }
    .tooth-img {
        height: 20px;
    }
    .tooth-number {
        font-size: 9px;
    }
}
/* fin de Historial del Paciente */