body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2B2B2B;
}

.input-container {
    right: 15%;
    left: 25%;
    position: fixed;
    bottom: 20px;
    display: flex;
}

.rounded-input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 13px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: #3A3A3A;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    resize: none;
    height: 20px;
}

.rounded-button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #3A3A3A;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-button:hover {
    background-color: #333333;
}

.rounded-button:focus {
    outline: 2px solid #3A3A3A;
    outline-offset: 2px;
}

.chat-container {
    display: flex;
    position: fixed;
    flex-direction: column;
    right: 15%;
    left: 25%;
    height: 75%;
    margin-top: 20px;
    margin-bottom: 120px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    flex-grow: 1;
}

.chat-message {
    background-color: #3A3A3A;
    color: white;
    padding: 10px;
    border-radius: 13px;
    margin: 5px 0;
    max-width: 80%;
    font-family: Arial, Helvetica, sans-serif;
    align-self: flex-end;
    text-align: right;
}

.chat-answer {
    background-color: #505050;
    color: white;
    padding: 10px;
    border-radius: 13px;
    margin: 5px 0;
    max-width: 80%;
    font-family: Arial, Helvetica, sans-serif;
    align-self: flex-start;
    text-align: left;
}

.settings-container {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2b2b2b;
    height: 100vh;
    width: 100vw;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}

.settings-properties-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rounded-close-button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #711a1a;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-close-button:hover {
    background-color: #501010;
}

.rounded-close-button:focus {
    background-color: #711a1a;
    outline-offset: 2px;
}

.input-group {
    margin: 30px 0;
}

.rounded-settings-input {
    width: 300px;
    padding: 12px 20px;
    border: none;
    border-radius: 13px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: #3A3A3A;
    color: white;
}

.input-group label {
    display: block;
    font-weight: bold;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.variable-label {
    display: inline-block;
    padding: 12px 20px;
    min-width: 60px;
    background-color: #3A3A3A;
    text-align: center;
    color: white;
    border-radius: 13px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, Helvetica, sans-serif;
}

.sidebar {
    width: 250px;
    left: 0;
    position: fixed;
    background-color: #1e1e1e;
    color: #f9fafb;
    display: block;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    border-right: 1px solid #1b1b1b;
    border-bottom-right-radius: 13px;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-color: #2b2b2b #1e1e1e;
}

.sidebar-button {
    width: 100%;
    padding: 12px 24px;
    text-align: left;
    background-color: transparent;
    color: #f9fafb;
    border: none;
    border-left: 3px solid transparent;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-left-color 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.sidebar-button:hover {
    background-color: #2b2b2b;
    border-left-color: #393939;
}

.sidebar-button p {
    font-family: Arial, Helvetica, sans-serif;
}

.sidebar-button button {
    position: relative;
    margin-left: auto;
    height: 30px;
    width: 30px;
    background-color: #711a1a;
    outline: none;
    border-width: 0;
    border-radius: 5px;
}

.new-chat-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 230px;
    height: 40px;
    background-color: #3A3A3A;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.new-chat-button:hover {
    background-color: #333333;
}

.new-chat-button:focus {
    outline: 2px solid #3A3A3A;
    outline-offset: 2px;
}