@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0');

/* Specyficzne style dla chatbota */
.chatbot-container {
    position: relative;
    z-index: 1000; /* Możesz dostosować tę wartość */
}

.chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #cd1001;
    transition: all 0.2s ease;
    z-index: 1001; /* Wyższa wartość zapewnia, że jest na wierzchu */
}

body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    color: #fff;
    position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
    opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot {
    position: fixed;
    right: 35px;
    bottom: 90px;
    width: 420px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
                0 32px 64px -48px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
    z-index: 1000; /* Musi być niższe od wartości dla .chatbot-toggler */
}

body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.chatbot header {
    padding: 16px;
    position: relative;
    text-align: left; /* Wyjustowanie tekstu do lewej */
    color: #cd1001;
    background-color: #fff;
    box-shadow: 0 2px 10px #fff;
}

.chatbot header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.chatbot header .close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
}

.chatbox {
    overflow-y: auto;
    height: 510px;
    padding: 30px 20px 100px;
}

.chatbox ::-webkit-scrollbar {
    width: 6px;
}

.chatbox ::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}

.chatbox ::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

.chatbox .chat {
    display: flex;
    list-style: none;
}

.chatbox .chat .timestamp {
    font-size: 0.8rem;
    color: #999;
    margin-left: 10px;
    background-color: white;
}

.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}

.chatbox .incoming span {
    width: 32px;
    height: 32px;
    color: #fff;
    cursor: default;
    text-align: center;
    line-height: 32px;
    align-self: flex-end;
    background-color: #cd1001;
    border-radius: 4px;
    margin: 0 10px 7px 0;
}

.chatbox .chat p {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 12px 16px;
    border-radius: 10px;
    max-width: 75%;
    color: #fff;
    background-color: #cd1001;
    font-size: 1.2rem;
    text-align: left; /* Wyjustowanie tekstu do lewej */
}

.chatbox .incoming p {
    border-radius: 10px 10px 10px 0;
}

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}

.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
    text-align: left; /* Wyjustowanie tekstu do lewej */
}

.chat-input {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 3px 20px;
    border-top: 1px solid #ddd;
}

.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    max-height: 180px;
    padding: 15px 15px 15px 0;
    font-size: 1.2rem;
    text-align: left; /* Wyjustowanie tekstu do lewej */
}

.chat-input span {
    align-self: flex-end;
    cursor: pointer;
    height: 55px;
    display: flex;
    align-items: center;
    visibility: hidden;
    font-size: 1.35rem;
}

.chat-input textarea:valid ~ span {
    visibility: visible;
}

/* Media queries */
@media (max-width: 768px) {
    .chatbot {
        width: 90%;
        right: 5%;
        bottom: 5%;
        height: auto;
        border-radius: 15px;
    }

    .chatbox {
        height: calc(100vh - 160px);
        padding: 20px 10px 60px;
    }

    .chat-input {
        padding: 5px 10px;
    }
}

@media (max-width: 490px) {
    .chatbot-toggler {
        right: 20px;
        bottom: 20px;
    }

    .chatbox {
        height: calc(100% - 60px);
        padding: 20px 10px 80px;
    }

    .chat-input textarea {
        height: 50px;
        font-size: 1.2rem;
    }

    .chatbot {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chat-input {
        padding: 5px 10px;
    }

    .chatbot header .close-btn {
        display: block;
    }
}
