
body {
    margin: 0;
    padding: 0;
}

#menu {
    width: 20%;
    height: 100vh;
    float: left;
    background-color: #f0f0f0;
}

#navigation {
    width: 100%;
    height: 50px;
    background-color: #ddd;
    display: flex; /* Use flexbox for horizontal alignment */
    justify-content: center; /* Center the items horizontally */
    align-items: center;
    /* Vertically center the items */
}

#navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navigation ul li {
    display: inline-block; /* Display list items as inline elements */
    margin: 0 10px; /* Add spacing between items */
}

#canvas-container {
    width: 80%;
    height: calc(100vh - 50px);
    float: right;
}

#canvas {
    width: 100%;
    height: 100%;
}

#profileImageBtn {
    /* Style the button as needed */
    background-color: #f0f0f0;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#profileImageBtn img {
    width: 30px; /* Adjust the image size as needed */
    height: 30px;
    border-radius: 50%; /* Make the image circular */
}

#myAccountContainer {
    width: 800px;
    height: 600px;
    /*border: 2px solid black;*/
    padding: 20px;
    margin: 20px auto;
}

.displayHidden {
    display:none;
}

.listStyle {
    list-style: none;
}

.linkButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

#floating-window {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    height: 200px;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px;
    z-index: 9999; /* Ensure it's on top of other elements */
}

.debugTable {
    border-collapse: collapse;
}

.debugRow {
    display: flex;
    height: 20px; /* Adjust the height as needed */
}

.debugHeaderCell {
    width: 100px; /* Adjust the width as needed */
    border: 1px solid black;
    padding: 2px;
}
.debugDataCell {
    width: 200px; /* Adjust the width as needed */
    border: 1px solid black;
    padding: 2px;
}

/* Form Styles*/

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    font-weight: bold;
}
input[type="text"],
input[type="email"]{
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.apiContainer {
    display: flex;
    flex-direction: row;
}

.apiColumn1 {
    flex: 0 0 100px;
    padding: 10px;
}
.apiColumn2 {
    flex: 1;
    padding: 10px;
}

.results-container {
    font-family: sans-serif;
    margin: 20px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.result-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
}

.label {
    font-weight: bold;
    margin-right: 5px;
}

.original-data {
    margin-left: 15px;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 3px;
    background-color: #f4f4f4;
}

.response-pre {
    white-space: pre-wrap; /* Preserve formatting and allow wrapping */
    background-color: #eee;
    padding: 8px;
    border-radius: 3px;
    overflow-x: auto; /* Handle long responses */
}

.error {
    color: red;
    font-weight: bold;
}

.success {
    color: green;
    font-weight: bold;
}

