@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    font-family: 'Poppins', 'sans-serif';
}
body {
    height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom right, #76c8e9, #00212b);
}

.app {
    position: relative;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    height: calc(100% - 70px);
    top: 70px;
}

.app .logo {
    top: 30%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.app .logo p {
    margin-top: 25px;
    font-size: 12px;
    font-weight: bold;
}

.app .logo img {
    width: 50px;
    height: 50px;
    border-radius: 25%;
    margin-right: 10px;
}

.app .chat-container {
    position: relative;
}

.app .chat-container .chat-box {
    position: relative;
    overflow: auto;
    height: 90%;
    width: 600px;
    transition: max-height 0.5s ease;
    padding-right: 3px;
}

.app .chat-container .chat-box::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: transparent; 
}

.app .chat-container .chat-box::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 5px;
}


.app .chat-container .chat-box .user-mess .profile {
    display: flex;
    background-color: rgba(255, 255, 255, 0.5);
    width: 15%;
    border-radius: 15px 5px 5px 5px;
}
.app .chat-container .chat-box .bot-mess .profile {
    display: flex;
    background-color: rgba(255, 255, 255, 0.5);
    width: 25%;
    border-radius: 15px 5px 5px 5px;
}
.app .chat-container .chat-box .user-mess .profile img,
.app .chat-container .chat-box .bot-mess .profile img {
    margin-top: 4px;
    margin-left: 5px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    /*border: 1px solid black;*/
}
.app .chat-container .chat-box .user-mess,
.app .chat-container .chat-box .bot-mess {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.app .chat-container .chat-box h2 {
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin: 0;
    padding: 5px;
}

.app .chat-container .chat-box p {
    color: white;
    font-size: 15px;
    margin: 0;
    padding: 5px;
    padding-bottom: 20px;
}

.app .chat-container .user {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;/*600*/
    min-height: 50px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 20px;
    transition: height 0.3s ease;
    bottom: 45%;
    transition: 0.7s;
}
.app .chat-container .footer {
    position: fixed;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.3s ease;
    /*bottom: 40%;*/
    font-size: 13px;
    color: #FFF;
}

.app .chat-container .user textarea {
    background: transparent;
    color: black;
    width: calc(100% - 20px); /* A szélesség a .user div szélességéből levonva a margin-t */
    outline: none;
    border: none;
    box-shadow: none;
    resize: none;
    font-size: 20px;
    min-height: 30px;
    height: 30px; /* Kezdeti magasság, csak egy sor látszódik */
    margin-left: 10px;
}

.app .chat-container .user i {
    margin-right: 10px;
    color: rgb(117, 117, 117);
}




.beta {
    top: 40%;
    position: absolute;
    color: white;
    justify-content: center; /* Új sor: középre igazítás vízszintesen */
    align-items: center; /* Új sor: középre igazítás függőlegesen */
}