/* Ikonka asystenta */
#assistant-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-size: 90px 90px;
    background-image:url('/templates/chromachecker/img/Assistant-250.png');
 
    color: white;
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;

    transition: background 0.3s;
    z-index: 2000; /* ponad wszystkim */
}
#assistant-toggle:hover {
     background-image:url('/templates/chromachecker/img/Assistant-250-active.png');
}

#assistant-window {
    display: flex;
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 350px;
    height: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    overflow: hidden;
    z-index: 9999991999;
    min-width: 250px;
    min-height: 300px;
    max-width: 90vw;
    visibility: hidden;
    max-height: 90vh;
}

#assistant-header {
    background: #0070ff;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    cursor: move; /* 🔑 uchwyt do przeciągania */
}

#assistant-resizer {
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: 4px;
    right: 4px;
    cursor: se-resize;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M2 14L14 2M6 14L14 6M10 14L14 10" stroke="%23aaa" stroke-width="2"/></svg>') no-repeat center center;
    background-size: contain;
}
#assistant-window.show {
    visibility: visible;
    opacity: 1;
}

/* Nagłówek */
#assistant-header {
    background: #007bff;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

/* Sekcja wiadomości */
#assistant-messages {
    flex: 1;                   /* zajmuje całą przestrzeń */
    padding: 12px;
    overflow-y: auto;           /* pionowy scroll */
    overflow-x: hidden;         /* brak poziomego scrolla */
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-word;
    scrollbar-width: thin;
}
#assistant-messages::-webkit-scrollbar {
    width: 6px;
}
#assistant-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Pole wprowadzania */
#assistant-input {
    display: flex;
    
    flex-shrink: 0;
    margin-bottom:30px;
}
#assistant-input input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    background:#eee;
    outline: none;
}
#assistant-input button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}
#assistant-input button:hover {
    background: #0056b3;
}

/* Wiadomości */
#assistant-messages {
    background: #f8f9fa;
    padding: 8px;
    margin: 6px 0;
    border-radius: 8px;
    font-size: 14px;
}
#assistant-messages a {
    color: #007bff;
    text-decoration: underline;
}
#assistant-messages a:hover {
    text-decoration: none;
}
#assistant-messages h1, #assistant-messages h2 {
    margin-top: 10px;
    font-size: 16px;
}
#assistant-messages ul {
    margin-left: 20px;
}
/* Styl wiadomości asystenta */
#assistant-messages {
    background: #fff;
    padding: 15px;
    margin: 8px 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
#assistant-messages .answear_msg {
     margin-bottom:10px;
}
#assistant-messages .my_msq {
 background:#ffcc33;   
 margin-bottom:10px;
 padding:5px;
}
/* Nagłówki */
#assistant-messages p {
    width:auto;
}
#assistant-messages h1,
#assistant-messages h2,
#assistant-messages h3 {
    font-weight: bold;
    margin: 10px 0 6px;
     width:auto;
    color: #222;
}
#assistant-messages h1 { font-size: 18px; }
#assistant-messages h2 { font-size: 16px; }
#assistant-messages h3 { font-size: 15px; }

/* Pogrubienie i kursywa */
#assistant-messages strong, 
#assistant-messages b {
    font-weight: 600;
    color: #000;
}
#assistant-messages em,
#assistant-messages i {
    font-style: italic;
}

/* Listy */
#assistant-messages ul, 
#assistant-messages ol {
    margin: 6px 0 6px 20px;
    padding-left: 20px;
    width:auto;
}
#assistant-messages li {
    margin-bottom: 4px;
}

/* Linki */
#assistant-messages a {
    color: #007bff;
    text-decoration: underline;
}
#assistant-messages a:hover {
    text-decoration: none;
}

/* Bloki kodu */
#assistant-messages code {
    background-color: #eee;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: Consolas, monospace;
    font-size: 13px;
}
#assistant-messages pre {


    padding: 10px;
    border-radius: 8px;
    overflow-x: auto;

    font-size: 13px;
    margin: 8px 0;
}

/* Cytaty */
#assistant-messages blockquote {
    border-left: 4px solid #ccc;
    margin: 8px 0;
    padding-left: 10px;
    color: #555;
    font-style: italic;
}