body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #2a3163;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-button.active {
    background-color: #632a2a;
	color: #ffe200;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.lists-container {
    display: flex;
    justify-content: space-between;
}

.list {
    width: 48%;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px;
    margin-bottom: 5px;
}

li.even {
    background-color: #1e1b3b;
}

li.odd {
    background-color: #262341;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #161539;
    color: white;
    border: 1px solid #0f4eab;
}

a {
    color: #ffce13;
    text-decoration: none;
}

a:hover {
    color: #95ffcf;
}
