body {
    background-color: #C4A484; /* Use any valid color code or name */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #7B3F00;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1000;
}
header .title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
header .menu-button {
    color: #7B3F00;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding: 10px 20px;
}
header .menu-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    max-height: 700px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}
header .menu-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
header .menu-dropdown ul li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}
header .menu-dropdown ul li:hover {
    background-color: #f4f4f4;
}
.container {
    display: none; /* All containers are hidden by default */
    padding: 20px;
}
.container.active {
    display: block; /* Only the active container is visible */
}
.search-bar {
    margin-bottom: 20px;
}
.search-bar input {
    width: 300px;
    padding: 10px;
}
.result-list {
    list-style: none;
    padding: 0;
}
.result-list li {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.buttons-group {
    display: flex;        /* Make the buttons flex items */
    align-items: center; /* Vertically align the buttons */
    gap: 5px;           /* Add some space between the buttons */
}

.mention {
    color: #0e0ec3;
    text-decoration: underline dotted;
    cursor: pointer;
}


#floating-hint {
    position: absolute;
    max-width: 600px;
    background-color: #333333aa;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 14px;
    z-index: 3000; /* Ensure it appears above other elements */
}