/* Tab Links */
.tabs{
    display:flex;
  }
  .tablinks {
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    padding: 1rem;
    font-size: 13px;
    text-transform: uppercase;
    font-weight:600;
    transition: 0.2s ease;
  }
  .tablinks:hover{
    background:rgb(11, 169, 90);
    color:#fff;
  }
  /* Tab active */
  .tablinks.active {
     background:rgb(11, 169, 90);
    color:#fff;
  }
  
  /* tab content */
  .tabcontent {
    padding-top: 30px;
    display: none;
    padding-left: 15%;

    
  }
  /* Text*/
  .tabcontent p {
    color: #333;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
  }
  /* tab content active */
  .tabcontent.active {
    display: block;
  }
  

  /*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
body > table{
    width: 80%;
}

table{
    border-collapse: collapse;
}
table.list{
    width:100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
tr:nth-child(even),table.list thead>tr {
    background-color: #dddddd;
}

input[type=text], input[type=number] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit]{
    width: 30%;
    background-color: #ddd;
    color: #000;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form div.form-action-buttons{
    text-align: right;
}

 /* a{
    cursor: pointer;
    text-decoration: underline;
    color: #c2a0a0;
    margin-right: 4px;
    text-decoration: none;
    
}*/

label.validation-error{
    color:   red;
    margin-left: 5px;
}

.hide{
    display:none;
}

/* nút download và nút link-begin*/
.button-container {
  display: flex;
  gap: 10px; /* Khoảng cách giữa các nút */
}

.link-button,
.download-button {
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 5px;
  color: #333;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.link-button:hover,
.download-button:hover {
  background-color: #ddd;
}
/* nút download và nút link-end*/

