* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .navbar {
   display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  height: 170px;
  }
  header{
  height: 170px;
  border-bottom: solid 1px rgb(206, 206, 206);
  box-shadow: rgb(224, 224, 224) 0 1px 0 0;
  }
  .logo{
        display: flex;
        align-items: center;
        color: #666565;
        font-family: 'Aboreto', system-ui;
        font-weight: lighter;
        font-style: italic;
        font-size: 55px;
        height: 30px;
        margin-top: 55px;
    }
    .containerbar{
        max-width: 1920px;
        margin: 0 auto;
   }
    .menu-toggle {
        display: none;
    }
    
    .bar {
        width: 30px;
        height: 3px;
        background-color: #666565;
        margin: 6px 0;
    }
    
    /* Navbar Linkleri */
    .nav-links {
        list-style: none;
        display: flex;
        margin-left: 55px;
       margin-top: 45px;
  }
    
    .nav-links li {
   margin-right: 40px;
        
    }
    .nav-links li a {
      text-decoration: none;
      color: #312d2d;
      font-size: 18px;
      font-weight: lighter;
      font-family: 'Aboreto', system-ui;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
main {
    padding: 2rem;
}


.top{
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Aboreto', system-ui;
    color: #888888;
    font-weight: lighter;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    table-layout: fixed;
   
}
table th{
    background-color: #72808e;
    color:  white;
}
table a{
    text-decoration: none;
}
th, td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
    word-wrap: break-word;
}

th {
    background: #f4f4f4;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 600px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    th, td {
        white-space: nowrap;
    }

    table {
        border: 0;
        
    }

    table tr {
        border-bottom: 1px solid #ddd;
        display: block;
        margin-bottom: 0.625rem;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 0.8rem;
        text-align: right;
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
    table td[data-label="Abbreviation"]:nth-child(1) {
        background-color: #ffdddd;
    }
    table td[data-label="Abbreviation"]:nth-child(2) {
        background-color: #ddffdd;
    }
    table td[data-label="Abbreviation"]:nth-child(3) {
        background-color: #ddddff;
    }
    table td[data-label="Abbreviation"]:nth-child(4) {
        background-color: #ffffdd;
    }
    table td[data-label="Abbreviation"]:nth-child(5) {
        background-color: #ddffff;
    }
}

 /* Mobil Stilleri */
 @media only screen and (width<=600px){
    body {
        font-size: 16px;
    }
  .logo {
        font-size: 30px;
        margin-right: 10px;
        margin-top: 30px;
    }
    header{
      height: 160px;
    }
    .menu-toggle {
      display: block;
      margin-top: 30px;
     
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    right: 60px;
    left: 0;
   }
  .nav-links.active {
      display: flex;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 5px;
  }
    .nav-links li a {
      font-size: 17px;
   }
    .nav-links li {
      margin: 10px 0;
  }
  .containerbar{
    width: auto;
  }
 
}