body {
  font-family: arial, sans-serif;
  font-size: 8px;
}

.modal-body {
  font-family: arial, sans-serif;
  font-size: 12px;
}

.inp {
  font-family: arial, sans-serif;
  font-size: 12px;
}

table {
  font-family: arial, sans-serif;
  width: 100%;
  font-size: 12px;
}

td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

th {
   border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  background-color: #fafbfc; /* 73be44 */
}

.highlight {
  background-color: Yellow;
  color: Green;
}

  #contenedor {
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}

nav{
    background-color: #2c5c97f2;
    box-shadow: 3px 3px 5px rgb(0, 0, 0, 0.1);
    color: white;
    position: fixed;
    width: 100%;
    z-index: 10;
}
nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: rgb(248, 246, 246);
}
nav a:hover{
    background-color: #f0f0f0;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #2c5c97f2;
    backdrop-filter: blur(10px);
    box-sizing: -10px 0 10px rgb(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
@media(min-width: 800px){
    .hideOnPC{
        display: none;
    }
}
@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}
.centerP{
    display: grid;
  place-items: center;
}
.perfil{
  width: 400px;
  text-align: center;
  display: grid;
  place-items: center;
}
.perfil .header{
  background: #0b1927c7;
  padding: 40px 40px 60px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.perfil .header .imagen .img{
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.perfil .header .imagen{
  display: inline-block;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(130deg, #74b9ff, #e66767);
}
.perfil .header .nombre{
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0px;
}
.perfil .header .descripcion{
  font-size: 18px;
  color: #e66767;
}
.perfil .header .elementos{
  margin: 25px auto 50px;
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.perfil .header .elementos a{
  color: white;
  width: 50px;
  font-size: 22px;
}
