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

html, body {
    height: 100%;
    font-family: sans-serif;
    overflow: hidden;
    font-family: "Turret Road", sans-serif;
}


/* ====== Loader section ====== */

#coremindLoader {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom right, rgb(65 18 255 / 71%), rgb(0 0 0 / 81%));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    backdrop-filter: blur(9px);

}

.brain-logo {
    width: 250px;
    animation: pulseGlow 2s infinite;
    filter: drop-shadow(0 0 20px #00ffff);
}

.loading-text {
    margin-top: 20px;
    color: #ffffff;
    font-size: 18px;
    font-family: 'Turret Road', sans-serif;
    animation: fadeInOut 2s infinite;
    text-align: center;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #00ffff);
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px #00ffff);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #00ffff);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}




.app-page-scroll-content{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 160px;
}


.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgb(65 18 255 / 71%), rgb(0 0 0 / 81%));
    z-index: 0;
    /*    backdrop-filter: blur(5px);*/
}


/*.glass-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 24px;
    background: #ffffff00;
    backdrop-filter: blur(1px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
    z-index: 3;
    min-height: 100px;
}*/

.glass-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 24px;
    background: #03030300;
    backdrop-filter: blur(3px);
    /* box-shadow: 0 8px 24px rgb(0 0 0 / 10%); */
    z-index: 3;
    min-height: 100px;
}



.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo-area img {
    height: 65px;
}


.logo-area .logo-text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.glass-top-buttons {
    display: flex;
    gap: 20px;
}

.glass-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.75;
    font-weight: 400;
    transition: all 0.3s ease;
}




.glass-button:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
}



.glass-button > span.material-icons {
    font-size: 35px;
    margin: 10px;
}



.glass-button svg {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
    stroke: currentColor;
}


.glass-bottom-bar {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(16px);
    z-index: 2;
    min-height: 90px;
    border: 1px solid #ffffff42;
    width: -webkit-fill-available;
}



.center-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 50%;
    height: 260px;
    transform: translate(-50%, -50%);
    background: url(./../../.././app/resources/images/logocoreai_white.png) no-repeat center / contain;
    z-index: 2;
    animation: pulse 2s infinite;
    cursor: pointer;
    /*    filter: drop-shadow(0 0 15px #00ffff);*/
}





.neuron-button
{
    position: absolute;
    padding: 15px;
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
    border: none;
    border-radius: 38px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s ease;
    /*    backdrop-filter: blur(10px);*/
    margin-top: 20px;
}
.neuron-button:hover {
    background: #ffffff10;
    color: #ffffff;
    font-weight: bold;
    transform: scale(1.25);
}


.btn-main-menu-icon > .material-icons {
    font-size: 40px;
}



.neuron-icon-svg svg {
    fill: #fff;
    width: 80px;
    height: 80px;
    filter: drop-shadow(2px 4px 6px #0091ff);
    transition-duration: 0.3s;
    animation: floatUpDown 3s ease-in-out infinite;
}


.neuron-icon-svg:hover svg {
    stroke: cyan;
    transition-duration: 0.3s;
}

canvas.connector {
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 1;
    pointer-events: none;
    padding-bottom: 200px;
}




/* Animacja góra-dół */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}


@media (max-width: 600px) {

    .hero-logo {
        width: 100px;
    }
    #typewriter {
        font-size: 20px;
    }
    .hero-sub {
        font-size: 14px;
    }



    .glass-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .glass-top-buttons {
        width: 100%;
        justify-content: space-around;
    }



    .glass-bottom-bar .glass-button {
        flex-direction: row;
        gap: 6px;
        font-size: 12px;
    }

    .glass-bottom-bar .glass-button svg {
        margin: 0;
    }



    .center-logo {
        position: absolute;
        top: 34% !important;
        left: 50%;
        width: 40%;
        height: 200px;
        transform: translate(-50%, -50%);
        background: url(./../../.././app/resources/images/logocoreai_white.png) no-repeat center / contain;
        z-index: 2;
        animation: pulse 2s infinite;
        /*        filter: drop-shadow(0 0 15px #00ffff);*/
    }



    .neuron-button {
        position: absolute !important;
        padding: 10px !important;
        background: transparent; /* linear-gradient(153deg, #5e4afeb5, transparent);*/
        color: #ffffff;
        font-size: 1rem !important;
        border-radius: 12px;
        font-weight: 400;
        cursor: pointer;
        z-index: 3;
        transition: 0.3s ease;
        height: auto;
        width: 130px;
        margin: 0px;
    }



    .neuron-icon-svg svg {
        fill: #fff;
        width: 60px!important;
        height: 60px!important;
        filter: drop-shadow(2px 4px 6px #0091ff);
    }
    canvas.connector {
        position: fixed;
        top: 3px;
        left: 0;
        z-index: 1;
        pointer-events: none;
        padding-bottom: 480px;
    }

}

#hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-logo {
    width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px #ffffffaa);
    transition: 0.2s;
}
.hero-logo:hover {
    width: 220px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px #000);
    cursor: pointer;
}

#typewriter {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    /* min-height: 40px; */
    /*    text-shadow: 0 0 10px #fff;*/
}


.hero-sub {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.85;
    font-family: "IBM Plex Mono", monospace;
}


.terminal-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 95vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.terminal-popup.active {
    display: flex;
    animation: pop-in 0.4s ease forwards;
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}


.terminal-output {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.4;
    /*    white-space: pre-wrap;*/
    color: #ffffff;
    height: -webkit-fill-available;
    min-height: 72vh;
    font-size: 1.22rem;
}
.terminal-input {
    border: none;
    outline: none;
    padding: 25px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #030831, #0000002e);
    color: #ffffff;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #00ffcc;
    animation: blink 1s step-end infinite;
    vertical-align: bottom;
    margin-left: 4px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


.tab-popup-terminal.active {
    display: flex;
    animation: slide-down 0.4s ease forwards;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}



.center-spine {
    position: absolute;
    top: 40%; /*top: 30%;*/
    left: 50%;
    width: 200px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: url('./../../.././app/resources/images/spine.png') no-repeat;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}




#txtWelcomeBrain {
    text-align: center;
    width: max-content;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 285px;
    padding: 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.95rem;
}





@media (max-width: 600px) {

    .hero-logo {
        width: 100px;
    }
    #typewriter {
        font-size: 20px;
    }
    .hero-sub {
        font-size: 14px;
    }



    .glass-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .glass-top-buttons {
        width: 100%;
        justify-content: space-around;
    }

    /*    .glass-bottom-bar {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 12px;
            padding: 10px;
            width: 95%;
            max-width: 100%;
            z-index: 5;
        }*/


    .glass-bottom-bar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px;
        width: -webkit-fill-available;
        max-width: auto;
        z-index: 5;
    }


    .glass-bottom-bar .glass-button {
        flex-direction: row;
        gap: 6px;
        font-size: 12px;
    }

    .glass-bottom-bar .glass-button svg {
        margin: 0;
    }

    .brain-buttons-group{
        margin-top: 500px!important;
    }


    #txtWelcomeBrain {
        text-align: center;
        width: max-content;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 190px;
        padding: 10px;
        border-radius: 20px;
        color: #fff;
        font-size: 0.75rem;
    }

}









/* Hamburger icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
}

.hamburger-menu span {
    width: 35px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Fullscreen mobile menu */
/* HAMBURGER BUTTON */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* MOBILE MENU OVERLAY */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #200954b0, transparent);
    backdrop-filter: blur(12px);
    display: none;
    flex-direction: column;
    z-index: 9998;
    overflow: hidden;
}

.mobile-menu.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

/* MOBILE MENU HEADER */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background: linear-gradient(45deg, #00000000, transparent);
    border-bottom: 1px solid #ffffff22;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 2;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #00ffff;
}

/* MOBILE MENU CONTENT */
.mobile-menu-inner {
    overflow-y: auto;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.mobile-menu-inner a{
    width: auto;

}


.mobile-link {
    font-size: 24px;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.mobile-link:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px #00ffff;
}






/* ANIMACJA */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .glass-top-buttons {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 600px) {


    .glass-top-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        gap: 8px;
    }

    .logo-area {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-grow: 1;
        flex-shrink: 1;
        max-width: 75%;
    }

    .logo-area img {
        height: 70px;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .logo-text h1 {
        font-size: 14px;
        line-height: 1.1;
        white-space: normal;
        word-break: break-word;
    }

    .logo-text p {
        font-size: 11px;
        line-height: 1.2;
        white-space: normal;
        word-break: break-word;
        margin: 0;
    }

    .hamburger-menu {
        display: flex;
        margin-left: auto;
        padding: 10px;
        flex-shrink: 0;
    }

}





.logo-pulse {
    animation: logoPulse 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px #00ffffaa);
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px #00ffff88);
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 15px #00ffffcc);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px #00ffff88);
    }
}



/* --- Główny kontener osi czasu --- */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px 0;
}

/* --- Środkowa linia osi czasu --- */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(45deg, #9238ffad, #ffffffdb);
    top: -295px;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    z-index: -1;
}
/* --- Kontener dla każdego wydarzenia --- */
.timeline-item {
    padding: 10px;
    width: 50%;
    position: relative;
    top: 50px;
}
/* --- Kropka na linii --- */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -7px;
    background: #3739b5;
    border: none;
    top: 25px;
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0px 2px 10px #0000004d;
}

/* --- Elementy po lewej stronie --- */
.left {
    left: 0;
}

/* --- Elementy po prawej stronie --- */
.right {
    left: 50%;
}

/* Poprawka pozycjonowania kropki dla prawych elementów */
.right::after {
    left: -14px;
}

/* --- Zawartość (białe pudełko) --- */
.content {
    padding: 20px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(155deg, #5e4afeb5, transparent);
    backdrop-filter: blur(7px);
    color: #fff;
}

.content p {
    line-height: 1.6;
    font-weight: 100;
    padding: 10px;
}

.content button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #4e64e1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content button:hover {
    background: #009bcc;
}

.timeline .content h3 {
    font-weight: 800;
    padding: 10px;
    background: #fff;
    color: #3e0ab7;
    border-radius: 8px;
}







.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin-bottom: 5px;
}




.socialmedia-box{
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}






.socialmedia-box > a > img:hover{
    width: 45px;
    transition-duration: 0.3s;
    opacity: 1;
}


.socialmedia-box > a > svg {
    color: #d8d8d8;
    text-decoration: none;
    opacity: 0.4;
    width: 33px;
    height: 18px;
    transition-duration: 0.3s;
}

.socialmedia-box > a > svg:hover {
    color: #d8d8d8;
    text-decoration: none;
    opacity: 1;
    width: 40px;
    height: 24px;
    transition-duration: 0.3s;
}




.rlinks-box{
    position: fixed;
    right: 26px;
    bottom: 14px;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}


.rlinks-box > a {
    color: #d8d8d8;
    text-decoration: none;
    font-size: 0.95rem;
    margin-left: 5px;
    margin-right: 3px;
}

.rlinks-box > a > img {
    width: 25px;
    transition-duration: 0.3s;
    opacity: 0.4;
}

.rlinks-box > a > img:hover{
    width: 45px;
    transition-duration: 0.3s;
    opacity: 1;
}


#appPageRoadmapContent {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    color: #ffffff;
    font-size: 1.6em;
    font-weight: bold;
    backdrop-filter: blur(20px);
}

.roadmap-header h2 {
    margin: 0;
    font-size: 1.2em;
}

.roadmap-close {
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    transition: 0.2s;
}

.roadmap-close:hover {
    color: #fff;
}

.roadmap-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    box-sizing: border-box;
    background: #0000002e;
}

.roadmap-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.05em;
    line-height: 1.6;
}

.roadmap-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.roadmap-content li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.roadmap-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ff;
}




.glass-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.75;
    font-weight: 400;
    transition: all 0.3s ease;
    gap: 10px;
}

.glass-button svg {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
    stroke: currentColor;
}


.glass-button {
    font-family: "IBM Plex Mono", monospace;
}
/*.glass-button {
    font-family: "Turret Road", sans-serif;
}*/


.btn-main-menu-text {
    font-family: "Turret Road", sans-serif;
}

.inputer-box{
    display: flex;
    justify-content: space-between;

}


.btn-sending-prompt {
    padding: 19px;
    height: -webkit-fill-available;
    width: max-content;
    background: transparent;
    cursor: pointer;
    border-top: 1px solid #1e2144;
}

.btn-sending-prompt > .material-icons {
    color: #3649b4;
}


#btnLoginInitializeNeuroshard{
    width: -webkit-fill-available;
    padding: 20px;
    background: #030b39;
    border: navajowhite;
    color: #fff;
    font-size: 1.4rem;
}

.entry-wrapper {
    margin-bottom: 15px;
}




.user-message {
    display: flex;
    align-items: flex-start;
    margin: 10px;
}

.user-icon {
    margin-right: 10px;
    color: #4d55be;
    font-size: 28px;
}

.user-icon > .material-icons{
    font-size: 40px;
}

.user-text {
    background: #00000038;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    max-width: 80%;
}


.bot-message {
    display: flex;
    align-items: flex-start;
    margin: 12px;
}

.bot-icon {
    margin-right: 10px;
}

.bot-icon img {
    width: 40px;
    height: 40px;
}

.bot-text{
    background: #0a0f14;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    max-width: 80%;
    line-height: 1.4em;
}