/* Modern table styles */
html {
  font-family: 'Segoe UI', Arial, sans-serif;
}
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 0px transparent;
  margin: 1.5em 0;
}
th, td {
  padding: 0.75em 1em;
  text-align: left;
}
th {
  background: #222;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #0e0563;
}
tr {
  transition: background 0.2s;
}
tr:nth-child(even) {
  background-color: #f6f8fa;
}
tr:hover {
  background-color: #e3e9f7;
}
td {
  border-bottom: 1px solid #e0e0e0;
  color: #000;
}

.navbar {
  background-color: #333;
  color: #fff;
  overflow: hidden;
}

.rounded {
    border-radius: 10px;
}