.section-container{
    width: 100%;
}
.section-content{
        display: grid;
    align-content: space-around;
    grid-template-rows: 100%;
    height: 700px;
}
.content-content{
    
    display: grid;
    grid-template-rows: 94%;
    grid-template-columns: 100%;

}
.content-structure{   
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 5px;
    display: grid;
    height: 100%;
    overflow-y: auto;
}
.content-row-files{
    display: grid;
    grid-template-columns: 5% 25% 50% 20%;
    padding: 15px;
    border-bottom: 1px solid gray;
    justify-items: center;
}
.content-row-files > div{
    width: 100%;
    padding: 2px;
    overflow: auto;
}
.perm-col{
    display: grid;
    /*grid-template-columns: repeat(4, 1fr);*/
}
.perm-row{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
}
.perm-row span{
width: 100%;
}
.action-section{
display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.classButton {
    background: #c6801a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    width: 150px;
    padding: 10px 0px;
    text-align: center;
}
.classButton:hover{
    background: #ce9745;
}
.form-row{
    display: grid;
    grid-template-columns: 20% 80%;
    padding: 10px;
}
.button-form{
        display: flex;
    justify-content: space-around;

}
.form-row input{
    border: none;
    width: 60%;
    margin-left: 20px;
    padding: 10px;
    background: white;
    border-bottom: 1px solid black;
    border-radius: 11px;
}
.line-row{
    width: 100%;
}
.line-row span{
    width: 100%;
    text-align: center;
}
.perm-row span input{
margin: 0;
width: 100%;
}
form{
    background: #f7e4c9;
}
.content-header{
    display: flex;
    align-items: center;
}


@media screen and (max-width: 1280px) {
  .content-structure{
    overflow: auto;
  }
  .content{  
      height: calc(100% - 90px)!important;
    }
  .content-structure .content-row-files {
    width: 800px;
  }
  .content-content {
      grid-template-rows: 100%!important;
  }
}
@media screen and (max-width: 800px) {
    .content-structure .content-row-files {
    width: 650px;
  }
  header {
        height: 90px!important;
        }
}


