body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #8C9EFF; /* Light purple background */
    color: #333; /* Dark text color */
}

nav {
    background-color: #5C6BC0; /* A shade of blue matching the theme */
    color: #fff; /* White text color */
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: #fff; /* White links */
    text-decoration: none;
}

header {
    background-color: #8292EA; /* Blue header background */
    color: #fff; /* White text color */
    padding: 2em 0;
    text-align: center;
    display: flex;
    align-items: center;
    position: fixed;
    justify-content: center;
    position: relative; /* Add this to position the button */
}

.header-image {
    max-height: 100%;
    max-width: 100px; /* Adjust the max width as necessary */
    margin-right: 20px;
}

.donation-button {
    background-color: #8292EA; /* Same as header background */
    color: #fff; /* White text color */
    padding: 10px 20px;
    border: 3px solid #5C6BC0; /* Light purple border */
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-left: 20px; /* Add some space between the text and the button */
    position: absolute;
    right: 20px; /* Adjust the position of the button */
}

.button {
    background-color: #8292EA; /* Same as header background */
    color: #fff; /* White text color */
    padding: 10px 20px;
    border: 3px solid #5C6BC0; /* Light purple border */
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

footer {
    background-color: #5C6BC0; /* A shade of blue matching the theme */
    color: #fff; /* White text color */
    padding: 1em 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.command-category {
    background-color: #8292EA; /* Blue background same as header */
    color: #fff; /* White text color */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.reg-category {
    background-color: #8C9EFF; /* Blue background same as header */
    color: #fff; /* White text color */
    padding: 20px;
    border-radius: 1px;
}

.command-category h2 {
    margin-top: 0;
}

.command-category ul {
    list-style: none;
    padding: 0;
}

.command-category ul li {
    margin: 10px 0;
}

.underlined {
    text-decoration: underline;
}
