body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #f5f5f5;
    color: 00356b;
    padding: 10px 0;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
}

#menu-container {
    text-align: left;
    padding: 20px;
    background-color: #007bff;
    color: white;
    border-bottom: 1px solid #ccc;
}

h1 {
    color: white;
}

select {
    padding: 10px;
    font-size: 16px;
    margin: 10px;
}

button {
    background-color: white;
    color: #00356b;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #ccc;
}


#visualization-container {
    font-family: initial; /* Reset font to default */
    font-size: initial; /* Reset font size to default */
    color: initial; /* Reset font color to default */
}

#threejs-container {
    width: 100%;
    height: 100%;
    position: relative;
    font-family: initial; /* Reset font to default */
    font-size: initial; /* Reset font size to default */
    color: initial; /* Reset font color to default */
}

#menu-instructions {
    text-align: left;
    margin: 20px;
}

#menu-instructions ul {
    list-style-type: disc;
    padding-left: 20px;
}

#image-container {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

#image-container img {
    max-width: 300px;
    height: auto;
}

#return-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #00356b;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#return-button:hover {
    background-color: #ccc;
}