/* OWL2 – fliegende Eule, Eingabeleiste, Sprechblasen */
.owl2-avatar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.2s;
}
.owl2-avatar:hover {
    transform: scale(1.05);
}
.owl2-ears {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.owl2-ear {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #8B4513;
}
.owl2-head {
    width: 100%;
    height: 55px;
    background: #8B4513;
    border-radius: 50%;
    position: relative;
    margin-top: -5px;
}
.owl2-eyes {
    display: flex;
    justify-content: space-around;
    padding: 12px 15px 0;
}
.owl2-eye {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    position: relative;
}
.owl2-eye::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: black;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}
.owl2-beak {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 18px solid #FFA500;
    position: absolute;
    bottom: 8px;
    left: 25px;
}
.owl2-body {
    width: 100%;
    height: 20px;
    background: #8B4513;
    border-radius: 0 0 30% 30%;
    margin-top: -5px;
}

/* Eingabe-Panel (unter der Eule) */
#owl2-input-panel {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: white;
    border-radius: 40px;
    padding: 6px 12px;
    display: flex;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10001;
}
#owl2-input {
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 0.9rem;
    width: 220px;
    outline: none;
}
#owl2-send {
    background: #00d4ff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
#owl2-send:hover {
    background: #0099cc;
}

/* Sprechblasen (dynamisch in body) */
.owl2-bubble {
    position: fixed;
    background: white;
    border-radius: 20px;
    padding: 10px 16px;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    border: 1px solid #e2e8f0;
    z-index: 10002;
    transition: opacity 0.2s;
    word-wrap: break-word;
}
.owl2-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    filter: drop-shadow(0 1px 0 #e2e8f0);
}