body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    justify-content: center;
}

.header {
    background-color: #1e1e1e;
    padding: 10px;
    border: 1px solid #333333;
    border-radius: 5px;
}

.header ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.header li {
    margin-right: 15px;
}

.header a {
    text-decoration: none;
    color: #1DB954;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.header a:hover {
    background-color: #333333;
}

.header a.active {
    background-color: #1DB954;
    color: #121212;
}

.download-action-button img {
    width: 20px;
    height: 20px;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background-color: #1DB954;
    color: white;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

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

form {
    gap: 10px;
}

input {
    padding: 10px 12px;
}

input[type="number"], input[type="password"], input[type="text"] {
    background-color: #1e1e1e;
    color: white;
    border: 2px solid #1e1e1e;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s;
    font-size: 12px;
    width: 250px;
}

input[type="submit"] {
    background-color: #1e1e1e;
    color: white;
    border: 2px solid #1e1e1e;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s;
    font-size: 12px;
}

input[type="number"]:focus, input[type="password"]:focus, input[type="text"]:focus, input[type="submit"]:focus {
    border-color: #1DB954;
}

@media screen and (max-width: 600px) {
    .hide-on-mobile {
        display: none; /* Hides the element */
    }
}

.col {
    display: inline-block;
    vertical-align: middle;
}

.row {
    margin-bottom: 5px;
}

#main {
    margin-left: auto;
    margin-right: auto;
    padding-top: 5em;
    text-align: center;
}

#formplace {
    padding: 10px;
    text-align: left;
}

#loginButton {
    float: right;
}

#logo img {
    height: 11em;
}
