/*
    Command navigation
*/

nav {
    margin: 25px 50px;
    width: fit-content;
}

nav button {
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-family: font_title;
    color: rgb(161, 161, 161);
    padding: 8px;
    transition: all 1.5s;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
}

.default-message {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 5%;
    height: 100vh;
    width: 100vw;
    color: #acacac;
    font-size: 20px;
    user-select: none;
}

.command-list {
    margin: 0 50px;
}

.command-type {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.command {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px 0 10px;
    width: 200px;
    background: rgb(27, 27, 27);
    border: 1px solid rgb(27, 27, 27);
    border-radius: 5px;
    transition: all 1.5s;
}

.command-title {
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 10px;
}

.command-title span {
    opacity: 25%;
}

.command p {
    font-size: 12px;
    color: #acacac;
}

.command-permission {
    padding: 8px;
    width: fit-content;
    height: fit-content;
    background: rgb(0, 121, 162);
    color: white;
    border-radius: 10px;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .page {
        flex-direction: column;
    }

    .filterCommand_list {
        flex-direction: row;
    }
}