* {
    margin: 0px;
    padding: 0px;
    line-height: 24px;
    vertical-align: middle;
}

a {
    text-decoration: none;
}



.header {
    grid-area: header;
    min-height: 60px;
    background-color: darkslategrey;
    padding-top: 30px;
    padding-left: 20px;
    color: white;
    font-size: 2em;
    font-weight: 300;

}

.menu {
    grid-area: menu;
    background-color: #fbfaff;
    min-height: 600px;
    margin-left: 10px;
    padding-top: 10px;
    padding-left: 10px;
    overflow-y: scroll;
    border: 1px solid #e9e9ef;
    font-size: 1.05rem;
}

.menu>a {
    margin-left: 24px;
    color: #474caf;
}

.menu>a:hover {
    text-decoration: underline;
}

.menu>a>svg {
    margin-left: -20px;
}



.tituloMenu {
    text-align: center;
    padding-top: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(84, 46, 170);
    margin-left: -24px;
}

.content {
    grid-area: content;
    background-color: rgb(106, 211, 247);
    padding: 20px;
    margin-right: 10px;
}

.wrapper {
    display: grid;
    grid-gap: 1em;
    grid-template-areas:
        "header"
        "menu"
        "content";
    width: 100%;
}

h1 {    
    margin: 10px;    
    font-size: 2.1rem;
}

button {
    min-width: 150px;
    font-size: 1.1rem;    
    padding:5px;
}

.text {
    width:100%;
    height: 30px;
    padding:5px;
    font-size: 1.1rem;
}

.imgagesAsistencia {
    width:24px;
}

.subMenuActivo {
    display:block;
}


.table {
    table-layout: fixed;  
    border-collapse: collapse;
    border: 1px solid black;
    width: 100%;
}
 
th {
    background-color: dimgray;  
    color:white;
    padding: 3px;
    vertical-align: bottom;
}
tr:nth-child(even) {
    background-color:  floralwhite ;
}

tr:nth-child(odd) {
    background-color: white;
}

td {
    padding: 5px;
    border-bottom: 1px solid rgb(100, 100, 100);
    
}

td:nth-child(3), td:nth-child(4){
    text-align: center;
}

.tab-header {
    display:flex;
}

.tab-content {
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
    border-right: 1px solid gray;
    padding: 10px;
    background-color: #f0f0f0;
}

.tab-link {
    display: inline-block;
    padding: 10px;
    margin: 0 0px;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid gray;    
    min-width: 140px;
  }
  
  .tab-link:active, .tab-link.active {
    background-color: #f0f0f0;
    color: #000000;
    border-bottom: none;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }

  .readOnly {
    background-color:lightgray
  }

  .displayNone {
    display:none;
  }
  

@media only screen and (min-width: 700px) {
    .wrapper {

        grid-template-columns: 180px auto;
        grid-template-areas:
            "header   header"
            "menu  content";
    }

    .header {
        font-size: 2.5rem;
    }

}

@media only screen and (min-width: 1000px) {
    .wrapper {
        grid-gap: 20px;
        grid-template-columns: 15% auto;
        grid-template-areas:
            "header  header"
            "menu content";
        max-width: 100%;
    }

    .header {
        font-size: 3.5rem;
    }

}