body {
    background-color: #F5F5F5;
    font-family: sans-serif;
    color: #222222;
    transition: all 0.3s ease-out;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-container {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto; */
    max-width: 550px;
    min-width: 410px;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 50px;
    margin: 0 auto;
}

.intro-container>* {
    flex-basis: 100%;
    margin-bottom: 1em;
}

.intro-container img {
    width: 70%;
    height: auto;
    align-self: center;
}

.label-experience {
    display: flex;
    justify-content: space-between;
}

.select-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.select-container>* {
    margin: 0 0.5em;
    flex-basis: calc(25% - 1em);
}


.chat-container {
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
}

.chat-box {
    background-color: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    overflow-y: scroll;
    flex: 1;
    flex-grow: 1;
}

.chat-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: none;
}

.user-message {
    background-color: #FFF2E5;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    align-self: flex-end;
}

.bot-message {
    background-color: #E5F7FF;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.text-input {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    border: none;
    outline: none;
    margin-top: 20px;
    flex: none;
    width: 85%;
}

.send-button {
    background-color: #FFD900;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    outline: none;
    margin-top: 10px;
    align-self: flex-end;
    cursor: pointer;
    flex: none;
}

.send-button:hover {
    background-color: #ffd9009b;
}  

.button {
    color: #FFFFFF;
    background-color: #3a2525;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    align-self: center;
    cursor: pointer;
    flex: none;
}

.button:hover {
    background-color: #111111;
}   

.spinner {
    display: flex;
    justify-content: center;
}

.coffeeLink {
    margin-top: 15px;
    margin-bottom: 20px;
    align-self: center;
}