* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    font-size: 16px;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.root-container {
    height: fit-content;
}

.chat-input-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    border: .1rem solid rgb(224, 224, 224);
    padding: .5rem;
}

.chat-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-item-container svg {
    width: 2rem;
}

.text-container {
    background-color: rgb(224, 224, 224);
    padding: .5rem 1rem;
    border-radius: 2rem;
}

.text-container input {
    width: 30rem;
    padding: .3rem 1rem;
    border: none;
    background-color: rgb(224, 224, 224);
    font-size: 1rem;
}

.text-container input::placeholder {
    color: gray;
    font-size: 1rem;
}

.text-container input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}