body {
font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #222;
background: #fff;
margin: 0;
padding: 0;
}
header {
background: #0078d7;
color: #fff;
padding: 5px 20px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.logo {
font-size: 22px;
font-weight: bold;
}
.logo a {
color: #fff;
text-decoration: none;
}
nav {
margin: 10px 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
font-weight: 500;
}
nav a:hover { text-decoration: underline; }
.search-bar {
margin-left: auto;
}
.search-bar input[type="text"] {
padding: 6px 10px;
border-radius: 4px;
border: none;
width: 300px;
}
.search-bar button {
padding: 6px 12px;
border: none;
border-radius: 4px;
margin-left: 5px;
background: #005a9e;
color: #fff;
cursor: pointer;
}
.container {
margin: 20px auto;
max-width: 1100px;
padding: 0 15px;
}
h1 { font-size: 28px; margin-bottom: 10px; }
h2 { margin-top: 25px; }
.download-box {
border: 1px solid #ddd;
padding: 20px;
margin: 20px 0;
background: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.btn {
display: inline-block;
padding: 12px 20px;
font-size: 16px;
background: #0078d7;
color: #fff;
text-decoration: none;
border-radius: 6px;
}
.btn:hover { background: #005a9e; }
table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
table th, table td {
border: 1px solid #ddd;
padding: 10px;
text-align: left;
}
footer {
margin-top: 40px;
font-size: 14px;
color: #666;
text-align: center;
padding: 15px;
border-top: 1px solid #eee;
}

table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
display: block; /* important */
overflow-x: auto; /* allow sideways scroll only for table */
white-space: nowrap;/* prevent text wrapping */
}


.logo {
display: flex;
align-items: center; /* ensures perfect vertical centering */
font-family: Arial, sans-serif;
font-size: 32px;
font-weight: bold;
}
.logo svg {
width: 32px;
height: 32px;
margin-right: 0px;
fill: #ffffff;
animation: spin 20s linear infinite;
display: inline-block;
vertical-align: middle;/* extra safety */
position: relative;
top: -5px; /* adjust up/down if needed */
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.dll { color: #ffffff; font-weight: normal; }
.miss { color: #333; }

@media (max-width: 768px) {
table, thead, tbody, th, td, tr {
display: block;
width: 95%;
}
tr {
margin-bottom: 15px;
border: 1px solid #ddd;
padding: 10px;
border-radius: 6px;
background: #f9f9f9;
}
th {
display: none; /* hide table headers */
}
td {
display: flex;
justify-content: space-between;
padding: 8px 5px;
border: none;
border-bottom: 1px solid #eee;
}
td:last-child {
border-bottom: none;
}
td::before {
content: attr(data-label);
font-weight: bold;
margin-right: 10px;
color: #333;
}
}
.az-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0;
  justify-content: center;
}
.az-link {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.az-link:hover {
  background: #0078d7;
  color: #fff;
  border-color: #0078d7;
}
.az-link.active {
  background: #0078d7;
  color: #fff;
  border-color: #0078d7;
}
