body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    margin: 20px auto;
    padding: 20px;
    max-width: 90%;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    color: #bb86fc;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

th {
    background-color: #2c2c2c;
    cursor: pointer;
}

tr:nth-child(even) {
    background-color: #1a1a1a;
}

tr:hover {
    background-color: #333333;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    padding: 8px 12px;
    border: none;
    background-color: #bb86fc;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #9c64e2;
}

.filters {
    margin-bottom: 20px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.filters label {
    font-weight: bold;
}

.filters input,
.filters select,
.filters button {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.filters button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border: none;
}

.filters button:hover {
    background-color: #0056b3;
}
