html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: url('../img/background1.jpg') !important;
    background-size:cover;
}

#master-table {
    width: 100%;
}

/* Estilo para la fila seleccionada */
.selected-row {
    background-color: #f5f5f5;
}

/* Estilo para la tabla de detalles */
.details-table {
    margin: 0;
}

/* Estilo para la fila de detalles */
.details-row {
    background-color: #f5f5f5;
}

/* Estilo para la fila maestra activa */
.active {
    background-color: #d9edf7;
}