/* Basic Table Styling */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #000000;
  }
  
/* Fancy styling for hyperlinks */
a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease; /* Smooth transition effect */
  font-weight: bold;
}
a:hover {
  color: #f800f2;
  text-decoration: underline;
  transform: scale(1.05); /* Slight zoom effect */
}
  table {
    width: 100%;
    border-collapse: collapse;

  }
  
  th, td {
    padding: 10px;
    text-align: left;
    border: 0px solid #ddd;

  }
  
  th {
    background-color: #000000;
  }

  .header {
    height: 190px;
    text-align: center;
    vertical-align: top;
  }
  
  .txt_content {
    vertical-align: top;
    color: #ffffff;
  }

  .txt_contentq {
    vertical-align: top;
    color: #989898;
    text-align: right;
  }

  .txt_contact {
    vertical-align: top;
    color: #ffffff;
    font-size: 1.0em;
  }

  .txt_title {
    vertical-align: top;
    color: #ffffff;
    font-size: 16px;
    text-decoration-line: underline;
    text-decoration-style: double;
    text-shadow: 2px 2px #953a93;
  }

  .contact_links {
    vertical-align: top;
    color: #ffffff;
    font-size: 16px;
  }

  .table_sub {
    color: #d3af37;
  }

  .arrow {
    vertical-align: bottom;
  }

  /* Column Widths */
  th:nth-child(1), td:nth-child(1) {
    width: 48%;
  }
  
  th:nth-child(2), td:nth-child(2) {
    width: 48%;
  }
  
  th:nth-child(3), td:nth-child(3) {
    width: 4%;
  }
  
/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 10px 20px;
    color: white;
  }
  
  .navbar .brand {
    font-size: 1.5em;
  }
  
  .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  .menu li {
    margin: 0 10px;
  }
  
  .menu a {
    text-decoration: none;
    color: white;
    padding: 5px 15px;
    transition: background 0.3s;
  }
  
  .menu a:hover {
    background: #f800f2;
    border-radius: 5px;
  }
  
  /* Mobile menu styles */
  .menu-toggle {
    display: none;
    font-size: 1.5em;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
  }

  /* Responsive Table Design */
  @media (max-width: 768px) {
    table {
      width: 100%;
      border: none;
      z-index: -1;
    }
  
    thead {
      display: none; /* Hide header on small screens */
    }

      /* Column Widths */
  th:nth-child(1), td:nth-child(1) {
    width: 100%;
  }
  th:nth-child(2), td:nth-child(2) {
    width: 100%;
  }
  
  th:nth-child(3), td:nth-child(3) {
    width: 100%;
  }
  
    tbody td {
      display: block;
      text-align: left;
      position: relative;
      padding-left: 0%;
    }
  
    tbody td::before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      font-weight: bold;
    }

    .menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 20%;
        position: absolute;
        top: 65px;
        right: 5%;
        padding: 10px 0;
      }
    
      .menu li {
        text-align: center;
        margin: 10px 0;
      }
    
      .menu.show {
        display: flex;
      }
    
      .menu-toggle {
        display: block;
      }
  
  }
  
  @media (max-width: 480px) {
    th, td {
      padding: 8px;
    }
  }
  