/* Lisää nämä olemassa olevan CSS:n loppuun */

.login-button {
    display: inline-block;
    background-color: #5865F2; /* Discord Blurple */
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.2s;
}

.login-button:hover {
    background-color: #4752C4;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header a {
    color: #3498db;
    text-decoration: none;
}

.section {
    margin-bottom: 30px;
}

#roles-container {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}

.role-checkbox {
    display: block;
    margin-bottom: 8px;
}

.role-checkbox input {
    margin-right: 8px;
}
