body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}

nav {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    margin: 0;
}

nav button {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

nav button:hover {
    background-color: #777;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 80%;
}

.log-container {
    white-space: pre-line;
    border: 1px solid black;
    padding: 10px;
    height: 200px;
    overflow-y: scroll;
    background-color: white;
    width: 100%;
}

.npc-dialogue {
    display: none;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.npc-dialogue-box {
    display: none;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.npc-dialogue button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
}

.npc-dialogue button:hover {
    background-color: #0056b3;
}

#dev-tools-container {
    margin-top: 20px;
}

#dev-tools-container button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
}

#dev-tools-container button:hover {
    background-color: #218838;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

.npc-interaction-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 30%;
}

.menu button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 200px; /* Set a fixed width */
}

.menu button:hover {
    background-color: #0056b3;
}

.info-container {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 65%;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}