/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2b2d30;
}

/* Hamburger button styling */
.hamburger {
    display: block;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    margin-bottom: 4px;
    transition: all 0.3s;
}
.menu {
    position: absolute;
    top: 60px;
    left: 20px;
}

/* Navigation menu styling */
nav {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: #1f2023;
    padding: 10px;
    border-radius: 5px;
}

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

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Show the navigation menu when active */
nav.active {
    display: block;
}

/* Animation for the hamburger icon */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.container {
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}
.title {
    margin: 0px;
    font-size: 18px;
    font-weight: bolder;
    color: #ededed;
}
.body {
    font-size: 14px;
    color: #ededed;
}
.footer {
    font-size: xx-small;
    color: #989898;
    border-bottom: #989898 solid 1px;
} 

textarea .autoResizeTextarea {
    width: 100%;
    resize: none; /* Prevent manual resizing */
    overflow: hidden; /* Hide overflow to avoid scrollbar */
    background-color: #2b2d30;
    color: #ededed;
    border: none;
}
.autoResizeTextarea textarea:focus {
    border: none;
    outline: none;
}
input {
    position: absolute;
    top: 13px;
    left: 60px;
    right: 20px;
    padding: 5px;
}
.content {
    margin-bottom: 10px;
}
.collapsed .body, .collapsed .footer {
    display: none;
}
.body, .footer, .title {
    white-space: pre-wrap;
}