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

h1 {
    color: #ffffff;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

input[type="text"], input[type="password"], input[type="date"], button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #333333;
    color: #ffffff;
}

a.button-like {
    display: inline-block;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #555555;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
}

a.button-like:hover {
    background-color: #777777;
    text-decoration: none;
}

button {
    cursor: pointer;
    background-color: #555555;
    width: 100%;
    max-width: 150px;
}

button:hover {
    background-color: #777777;
}

a {
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

/* Stopka */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid #333;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Wykres */
/*.chart-container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
} */

canvas {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    height: 650px;
}

/* Lista graczy */
.dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.dropdown button {
    width: 108%;
    max-width: 1100px;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
}

.dropdown-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    background: #1e1e1e;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    max-height: 500px;
    overflow-y: auto;
    margin: 0 auto;
}


       /* Kontener dla linków w prawym górnym rogu */
    .bottom-links {
      position: absolute;  /* lub absolute, jeśli chcesz względem innego kontenera */
      top: 20px;        /* odstęp od góry, możesz zmienić wartość */
      right: 10px;      /* odstęp od prawej strony, możesz zmienić wartość */
      background-color: #1e1e1e;  /* opcjonalne, dla kontrastu */
      padding: 10px;
      border-radius: 5px;  /* opcjonalnie, dla zaokrąglonych rogów */
    border: 1px solid #333
    }
    
    /* Linki ustawione jeden obok drugiego z odstępem */
    .bottom-links a {
      margin-left: 10px; /* odstęp między linkami */
      text-decoration: none;
    }
    
    /* Jeśli chcesz, aby pierwszy link nie miał lewego marginesu */
    .bottom-links a:first-child {
      margin-left: 0;
    }