/* Estilos base para todas las resoluciones */
#sidebar-nav {
    width: 160px;
}

/* Media query para resoluciones de PC */
@media screen and (min-width: 1024px) {
    #sidebar-nav {
        width: 200px; /* Puedes ajustar el ancho según tus necesidades */
    }

    .menu-title{
        display: inline-block; vertical-align: middle;
        font-size: 16px;
    }
}

/* Media query para resoluciones de tablet */
@media screen and (max-width: 1023px) and (min-width: 768px) {
    #sidebar-nav {
        width: 70px; /* Puedes ajustar el ancho según tus necesidades */
    }
    
    .menu-title{
        display: none;
    }
    .icon-center{
        text-align: center;
    }
    .ic{
        display: inline-block;
         vertical-align: middle;
    }

}

/* Media query para resoluciones de celular */
@media screen and (max-width: 767px) {
    #sidebar-nav {
        width: 40px; /* El sidebar ocupará todo el ancho disponible en dispositivos móviles */
    }

    .menu-title{
        display: none;
    }

    .icon-center{
        text-align: center;
    }
}


.btn-circle {
    width: 35px;
    height: 35px;
    padding: 6px 6px;
    margin: 0;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
  }
  

  .text-menu{
    color: #6C7383;
  }
  
  .bg-menu{
    background-color: #59ab6e;
  }

  .table-striped .datepicker table tr td,
    .table-striped .datepicker table tr th {
    background-color: transparent;
    }

    .table-striped tbody tr:nth-of-type(odd) {
    background-color: #F5F7FF;
    }

    .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
    }


    .custom-link {
        text-decoration: none; /* Eliminar subrayado */
        color: inherit; /* Heredar el color del texto padre */
    }

/* Estilos para el contenedor del mapa */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Proporción 16:9 (para videos de YouTube) */
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  
  
  .custom-modal-dialog {
    width: 60vw;
    max-width: 60%;
  }