/* Reset default margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Headings */
h1, h2, h3 {
  margin-bottom: 10px;
}

/* Paragraphs */
p {
  margin-bottom: 10px;
}

.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #850052;
}

.nav li {
  float: left;
}

.nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.nav li a:hover {
  background-color: #ee018b;
}

.logo img {
  height: 40px; /* adjust as needed */
}

/* table styles */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin-top: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.styled-table thead {
  background-color: #663399; /* Purple */
  color: #ffffff;
}

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

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

.styled-table tbody tr:hover {
  background-color: #f1f1f1;
}
