* {
  margin: 0;
  padding: 0;
}

.navbar {
  width: 100%;
  height: 75px;
  margin: auto;
  background-color: #002f88;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.icon {

  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo {
  height: 50px;
  width: 70px;
  margin-left: 10px;
}

.logo-text {
  color: white;
  font-size: 35px;
  font-family: Arial;
  float: left;
  padding-top: 10px;
  padding-left: 5px;

}

.menu {
  width: 670px;
  float: left;
  height: 70px;
}

ul {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul li {
  list-style: none;
  margin-left: 62px;
  margin-top: 27px;
  font-size: 15px;
}

ul li a {
  text-decoration: none;
  color: #fff;
  font-family: Arial;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}

abbr {
  text-decoration: none;
}


ul li a:hover {
  color: #ff7200;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

th {
  background-color: #007BFF;
  color: white;
  text-transform: uppercase;
}

tbody tr:hover {
  background-color: #e9f5ff;
  transition: background-color 0.3s;
}

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

tbody tr {
  transition: background-color 0.3s, transform 0.3s;
}

tbody tr:hover {
  transform: scale(1.01);
}

.footer1 {
  font-family: Arial;
  height: 50px;
  padding-top: 20px;
  text-align: center;
  color: white;
  background-color: #002f88;
}