@font-face {
  font-family: 'Noto Sans';
  src: url('../noto-sans/NotoSans-Regular.ttf') format('truetype');
}

.title {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 20px; 
  margin-bottom: 20px;
  flex-direction: row;
  position: relative;
}

  .title-aiopslab {
    text-align: center;
    font-size:72px;
    color:#4A90E2;
    font-family:'Noto Sans', sans-serif;
    width: 100%;
  }
  
  .title-author {
    display: flex;
    flex-wrap: wrap;
    text-align:center;
    font-size:20px;
    color:#4A90E2;
    font-family:'Noto Sans', sans-serif;
    margin: auto;
    width:50%;
  }


.nav {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 15px; 
  margin-top: 10px; 
  margin-bottom: 20px;

  .nav-block {
    display: flex;
    margin: 5px;
    align-items: center;

    .link-btn {
      display: flex;
      width: 170px;
      background-color: #4e91f4;
      justify-content: center; 
      padding: 12px 24px; 
      font-size: 16px;
      font-weight: 500; 
      border-radius: 30px; 
      transition: all 0.3s ease-in-out; 
          
      .icon {
        margin-right: 10px; 
        color:aliceblue;
      }

      .link-text {
        color:aliceblue; 
        text-align: center;
        align-items: center;
        font-family:'Noto Sans', sans-serif;   
      }

      &:hover {
        background-color: #3b75f1; 
        transform: translateY(-2px); 
      }
    }
  }
}

.textdiv {
  background-color: #ffffff;
  font-size: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: solid 3px rgba(2, 101, 250, 0.68);
  font-family: 'Noto Sans', sans-serif;
}

.textM365 {
  font-size:20px;
  font-family: 'Noto Sans', sans-serif;
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Noto sans", sans-serif;
  text-align: center;
  white-space: nowrap;
  table-layout: auto;
}
th {
  cursor: pointer;
  padding: 15px 20px;
  background-color: #3a7ce7;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: sticky;
  top: 0;
  z-index: 2;
  border: none;
}
th:hover {
  background-color: #4169E1;
}
tr:nth-child(even) {
  background-color: #c4dcf5;
}
tr:nth-child(odd) {
  background-color: #d3ecf9;
}
td {
  padding: 15px 20px;
  border-bottom: 1px solid #6be9e9;
}

.styled-table {
  border-collapse: collapse;
  font-size: 1em;
  min-width: 400px;
  margin: 20px auto;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
  background-color: #4A90E2;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}
.styled-table th,
.styled-table td {
  padding: 12px 15px;
}
.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #4A90E2;
}
.styled-table tbody tr:hover {
  background-color:rgb(163, 182, 245);
}
.table-container {
  background-color: #ffffff;
  text-align: center;
  width: 100%;
  overflow-x: hidden; 
  white-space: nowrap; 
  border-radius: 10px;
  border: solid 3px rgba(2, 101, 250, 0.68);
  padding: 20px;
}

