body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
}
main {
    margin-left: 200px; /* Same as the sidebar width */
}
header {
    margin-left: 200px; /* Same as the sidebar width */
}

footer {
    margin-left: 200px; /* Same as the sidebar width */
    color: gray;
    font-size: 8px;
    text-align: center;
}

.sidebar-nav {
    height: 100vh;
    /* full height of the viewport */
    width: 200px;
    /* width of the sidebar */
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    overflow-x: hidden;
    padding-top: 20px;
}

.sidebar-nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-nav ul li a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    color: silver;
    display: block;
}

.sidebar-nav ul li a:hover {
    color: white;
    background-color: #555;
}

.main-content {
    margin-left: 200px;
    /* same as the width of the sidebar */
    padding: 20px;
}
#logo-text {
    color: silver;
}
#logo-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    object-position: center; /* Adjust this as needed */
    color: white;
}

#logo-div {
    display: flex;
    flex-direction: row;
}

#logo-background {
    background-color: #ffffff; /* the color of the svg background */
    width: 31px;
    height: 31px;
    border-radius: 50%;
}

#chatbox {
    width: 600px;
    height: 500px;
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: scroll;
}

#userInput {
    width: 480px;
    border-radius: 20px;
    border: 2px solid grey;
    padding: 5px 10px;
    overflow: hidden;
    resize: none;
    min-height: 30px;
    box-sizing: border-box;
    /* Ensures padding doesn't affect overall width */
}

#sendButton {
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

#sendButton:before {
    content: '↑';
    font-size: 24px;
    color: grey;
}
#sendButton:hover {
    color: white;
}

#debug {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    color: rgb(69, 227, 22);
    /* color: rgb(69, 227, 250); */
}

.circle {
    width: 40px; /* Size of the circle */
    height: 40px; /* Size of the circle */
    /* how to set thickness of the circle */
    border-radius: 50%; /* Makes the div circular */
    border: 3px solid #aaa; /* Circle's border */
    border-top-color: #00ff1a; /* Color of the top border */
    animation: spin 2s linear infinite; /* Animation applied to the circle */
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }