body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background-color: #282828;
    }

    .container {
      max-width: 1000px;
      width: 100%;
      margin: 5% 20px 20px 20px;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
	  #logo {
		  width: 70px;
		  height: 70px;
    }
    h1 {
      font-size: 1.8rem;
      color: #555;
      text-align: center;
      margin-bottom: 20px;
    }

    .search-container {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      width: 100%;
    }

    input[type="text"] {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 1rem;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    th,
    td {
      text-align: left;
      padding: 10px;
      border: 1px solid #ddd;
    }

    th {
      background-color: #1C9786;
      color: white;
    }

    tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    tr:hover {
      background-color: #e1e1e1;
    }

    a {
      text-decoration: none;
      color: #1C9786;
      transition: color 0.3s;
    }

    a:hover {
      color: #147567;
    }

    .col-center {
      text-align: center;
    }

    .table-wrapper {
      overflow-x: auto;
      width: 100%;
    }
    th {
    background-color: #1C9786;
    color: white;
    cursor: pointer;
    position: relative;
  }

  .sort-icon {
    font-size: 0.9rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .active-column {
    background-color: #147567;
  }

    @media (max-width: 768px) {

      body {
        background-color: #fff;
      }
      .container {
        padding: 10px;
		margin: 0;
		border-radius: 0;
    box-shadow: none;
      }

      table {
        font-size: 0.9rem;
        max-width: 100vw;
      }

      th,
      td {
        padding: 8px;
      }

      .search-container {
        width: 100%;
      }

      input[type="text"] {
        width: 100%;
        font-size: 16px;
      }

    }

    @media (max-width: 480px) {
	  table {
        font-size: 0.8rem;
      }

      th,
      td {
        padding: 6px;
      }

      .search-container {
        margin-bottom: 10px;
      }

      input[type="text"] {
        padding: 8px;
        font-size: 16px;
      }
    }