body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light text */
}
h1 {
    color: #f0f0f0; /* Lighter color for headings */
}
label {
    margin-right: 10px;
}
select {
    padding: 8px;
    margin-bottom: 20px;
    background-color: #333; /* Darker background for select */
    color: #e0e0e0; /* Light text for select */
    border: 1px solid #555; /* Subtle border */
}
button {
    padding: 8px 15px;
    background-color: #0056b3; /* Slightly darker blue for buttons */
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #003d80; /* Even darker blue on hover */
}
ul {
    list-style-type: none;
    padding: 0;
}
/* Add a subtle background to list items for better readability in dark mode */
li {
    margin-bottom: 8px;
    background-color: #2a2a2a; /* Slightly lighter dark background for list items */
    padding: 5px 10px;
    border-radius: 4px;
}
a {
    color: #66b3ff; /* Lighter blue for links */
}
a:hover {
    text-decoration: underline;
    color: #99ccff; /* Even lighter blue on hover */
}
img {
    max-height: 50px;
    width: auto;
}  
table {
    width: 100%;
    border-collapse: collapse;
    }
th, td {
    border: 0px solid #ddd;
    padding: 8px;
    text-align: left;
tr {
      background-color: #2a2a2a;  
}
td:first-child{ width: 40px; }
td:last-child{ width: 40px; }
tbody tr:hover {
    background-color: #3a3a3a;
}
.el {
    position: relative;
}
.el:before {
    content: '&nbsp;';
    visibility: hidden;
}
.el span {
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
