* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #4c3615;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 450px;
    height: 85vh;
    background: rgb(138, 103, 66);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px
}

#title {
    color: #cccccc;
    text-align: center;
    padding: 20px;
}

.chat-window {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    gap: 12px;
    background: #3b2001;
    border-radius: 20px;
    margin: 10px;
}

.bot {
    justify-self: flex-start;
    background: rgb(98, 63, 24);
    color: #fffefe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: fit-content;
    padding: 12px;
    border-radius: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.user {
    justify-self: flex-end;
    background: rgb(201, 148, 91);
    color: white;
    width: fit-content;
    padding: 12px;
    border-radius: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.input {
    display: flex;
    gap: 12px;
    padding: 20px;
}

.input input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #907531;
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
}

.input button {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: #59430c;
    color: white;
    border: none
}

.input button:hover {
    opacity: 0.9;
}
