body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: row;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 5px;
}

#content {
    width: calc(100%-250px);
    padding: 10px;
    overflow-y: auto;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-left: 0;
}

li {
    margin-bottom: 10px;
    cursor: pointer;
}

#search-container {
    position: fixed;
    top: 30px;
    right: 15px;
    width: 200px;
    padding: 10px;
    background-color: #111;
    border-radius: 10px;
}

#search-input {
    width: 90%;
    background-color: #111;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

#search-input:focus {
    background-color: #222;
}

.search-category {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.search-command {
    font-size: 16px;
}