body {
    font-family: Arial, sans-serif;
    background-color: #fff3e0;
    margin: 0;
    padding: 0;
    background-image: url('./pot2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.intro-container, .chat-container {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-container h1 {
    text-align: center;
    color: #ff7043;
}

.intro-container img {
    display: block;
    margin: 10px auto;
    width: 50%;
    min-width: 300px;
}

.intro-container label, .chat-container label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #ff7043;
}

.intro-container input, .intro-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.intro-container button {
    width: 100%;
    padding: 10px;
    background-color: #ff7043;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.intro-container button:hover {
    background-color: #d65c33;
}

.chat-container .chat-bubble {
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
}

.user-bubble {
    background-color: #e0f7fa;
    text-align: left;
}

.bot-bubble {
    background-color: #ffe0b2;
    text-align: right;
}

.loader {
    text-align: center;
    margin: 10px 0;
}

.chat-input {
    width: calc(100% - 80px);
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.send-button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ff7043;
    border: none;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.send-button:hover {
    background-color: #d65c33;
}