/**
 * OzPriceHistory — front styl pro „Nejnižší cena za 30 dní" box.
 * Minimalistický, neutrálně barevný (uživatel přebije v adminu).
 * @author One Zero IT
 */

.ozph-box {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.35;
    cursor: help;
}
.ozph-box .ozph-text { font-weight: 500; }
.ozph-box .ozph-chart { display: block; margin-top: 6px; max-width: 320px; }

/* Plain varianta — žádné stylování, jen ozph-text a ozph-chart;
 * šablona si přebere vzhled vlastními CSS pravidly. */
.ozph-plain { display: block; margin-top: 6px; font-size: inherit; line-height: 1.4; cursor: help; }
.ozph-plain .ozph-chart { display: block; margin-top: 4px; max-width: 320px; }

.ozph-modal-backdrop {
    position: fixed; inset: 0; background: rgba(15, 23, 42, .55);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.ozph-modal {
    background: #fff; border-radius: 12px; padding: 22px;
    max-width: 560px; width: 90%; box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}
.ozph-modal h3 { margin: 0 0 10px; color: #0f172a; font-size: 16px; }
.ozph-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: transparent; border: 0; font-size: 22px; cursor: pointer; color: #64748b;
}
