.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}
.logo img{
    margin-top: 20px;
    margin-bottom: 10px;
    width:120px;
}

/* Styles for the loading icon */
.loading-icon {
    display: none; /* Initially hidden */
    font-size: 24px;
    color: #007bff; /* Change as per your requirement */
}

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

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    /* background-color: #f8f9fa; */
}

.container {
    max-width: 390px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.title {
    background-color: #007bff;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.chat-container {
    max-width: 390px;
    margin: 0 auto;
    padding: 20px;
    min-height: 300px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.chat {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.user-bubble {
    background-color: #007bff;
    color: #fff;
    border-radius: 20px;
    padding: 10px 15px;
    max-width: 70%;
    word-wrap: break-word;
    float:right;
    margin-bottom: 10px;
}

.bot-bubble {
    background-color: #f0f0f0;
    color: #333;
    border-radius: 20px;
    padding: 10px 15px;
    max-width: 70%;
    word-wrap: break-word;
    margin-top:60px;
}

.input-container {
    display: flex;
    margin-bottom: 0px;
}

.chat{
    min-height: 300px;
}

.chat-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    outline: none;
}

.send-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    outline: none;
}

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

.intro-container input{
    margin-bottom: 4px;
}

.intro-container img{
    width: 50%;
    min-width: 300px;
}

#date{
    margin-top:4px;
    border-radius: 42px;
    height:30px;
    padding:4px 8px;
    width:150px;
    border:1px solid #ccc;
}
.name-input{
    margin-top:4px;
    padding:4px 8px;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 44px;
    height:44px;
    line-height: 44px;
    font-size: 16px;
    width:146px;
    outline: none;
}

.intro-container button{
    margin-bottom: 14px;
    margin-top:4px;
    padding:4px 8px;
    height: 42px;
    border-radius: 42px;
    font-size: 16px;
    width:165px;
    outline: none;
    border: 1px solid #333;
    background-color: #333;
    color:#fff;
}

.kakao-ad{
    display:flex;
    justify-content: center;
    align-items:center;
    margin-top: 20px;
    min-width: 350px;
    min-height:70px;
}