body {
    font-family: Arial, sans-serif;
    background-image: url('dollar.png');
    background-repeat: repeat;
    background-size: 25%;
    display: flex;
    justify-content: center;
}

.content-background {
    background-color: rgb(255, 222, 80, 0.7);
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    z-index: 1;
    position: relative;
    padding-bottom: 20px;
    min-width: 180px;
}

.content {
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 180px;
}

.intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-container img {
    width: 80%;
}

.intro-container h1 {
    font-size: 28px;
    white-space: nowrap;
}


.chat {
    width: 90%;
    min-width: 200px;
    max-width: 400px;
    margin: 0 auto;
    padding: 5px;
    border: 5px solid #FFBD00;
    background-color: #FFDE50;
    border-radius: 10px;
}

.chat .messages .message {
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background: #FFF;
    border-radius: 1.125rem 1.125rem 1.125rem 0;
    min-height: 2.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 66%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.075), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.1);
    word-break: break-all;
}

.chat .messages .message.user {
    margin: 1rem 1rem 1rem auto;
    border-radius: 1.125rem 1.125rem 0 1.125rem;
    background: #333;
    color: white;
}

.chat .messages .message.bot {
    border-radius: 1.125rem 1.125rem 1.125rem 0;
    background: #5A8D3F;
    color: white;
}

#loader {
    font-size: 25px;
    text-align: center;
}

.input-container {
    margin-top: 20px;
}
.chat-input {
    padding: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    width: calc(100% - 70px);
    margin-right: 10px;
}

.send-button {
    padding: 10px;
    background-color: #5A8D3F;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    align-self: flex-end;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}