* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0b0b0b;
    color: #cccccc;
    line-height: 1.6;
    padding: 20px;
}

h1, h2 {
    margin-bottom: 10px;
    color: #f0f0f0;
}

a {
    color: #5a9bff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #add8e6;
    text-decoration: underline;
}

header {
    background-color: #0f1e3c;
    color: white;
    padding: 20px;
    text-align: center;
}

form {
    margin-top: 20px;
}

select {
    padding: 10px;
    font-size: 1em;
    border: 2px solid #5a9bff;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin-bottom: 20px;
    transition: border 0.3s ease, background-color 0.3s ease;
}

select:focus {
    border-color: #5a9bff;
    background-color: #262626;
}

#tanga {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #0f1e3c;
    background-color: #161616;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #2a4069;
    background-color: #121212;
    color: #dddddd;
    transition: background-color 0.3s ease;
}

table th:hover, table td:hover {
    background-color: #1a1a1a;
}

.table-button {
    background-color: #0f1e3c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.table-button:hover {
    background-color: #1c3b6e;
    transform: scale(1.05);
}

.main-button {
    background-color: #0f1e3c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 20px;
}

.main-button:hover {
    background-color: #1c3b6e;
    transform: scale(1.05);
}
