/**
 * Custom CSS for Pimcore Admin UI
 */

/* Überschreibe inline style vom Panel-Body (height:463px) und entferne overflow */
.x-panel.pimcore_layout_iframe_border .x-panel-body {
    height: 800px !important;
    min-height: 800px !important;
    overflow: visible !important;
}

/* Überschreibe auch das Panel selbst */
.x-panel.pimcore_layout_iframe_border {
    height: auto !important;
    min-height: 800px !important;
}

/* iframe selbst auf 100% Höhe setzen (nicht mehr als Container) */
.x-panel.pimcore_layout_iframe_border iframe {
    height: 100% !important;
    min-height: 800px !important;
}

/* Custom Reports: Graue Hinterlegung für Zeilen mit grauem "Nein" Badge in active-Spalte */
/* Hauptregel: Färbt ALLE Zellen in einer Zeile die ein graues Nein-Badge enthält */
tr.x-grid-row:has(div[style*="background:#6b7280"]) td.x-grid-cell {
    background-color: #959595 !important;
    opacity: 0.7 !important;
}

tr.x-grid-row:has(div[style*="background:#6b7280"]):hover td.x-grid-cell {
    background-color: #e5e7eb !important;
    opacity: 0.85 !important;
}
