/**
 * Tippy.js Theme 'anno' - Anno 1404 Style
 * Ersetzt das alte jquery.tooltip.css
 */

/* Basis-Theme */
.tippy-box[data-theme~='anno'] {
    position: relative;
    z-index: 3000;
    border: 1px solid #947149;
    background-color: #373028;
    padding: 5px;
    color: #d0baa3;
    font-size: 1em;
    border-radius: 0; /* Anno Look ist kantig */
}

/* Pfeil ausblenden (Original hatte keinen) */
.tippy-box[data-theme~='anno'] > .tippy-arrow {
    display: none;
}

/* Content Styling */
.tippy-box[data-theme~='anno'] .tippy-content {
    padding: 0;
}

/* Titel (grün) - ersetzt .ttTitel */
.tippy-box[data-theme~='anno'] .tt-header {
    color: #3bed59;
    font-weight: normal;
    display: block;
    margin: 0;
    font-size: 1em;
}

/* Body (beige) - ersetzt .ttBody */
.tippy-box[data-theme~='anno'] .tt-body {
    color: #d0baa3;
    font-weight: normal;
    display: block;
    margin: 0;
    font-size: 1em;
}
