/* --- STYLE PANELU KONTROLNEGO (NIE DRUKUJE SIĘ) --- */
    #admin-panel {
        background: #2c3e50;
        color: #fff;
        padding: 15px;
        text-align: left;
        font-family: Arial, sans-serif;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        margin-bottom: 20px;
    }
    #admin-panel h2 { margin: 0 0 10px 0; font-size: 18px; color: #ecf0f1; }
    #admin-panel select, #admin-panel button { padding: 8px 12px; margin-right: 10px; border-radius: 4px; border: none; }
    #admin-panel button { background: #27ae60; color: white; font-weight: bold; cursor: pointer; }
    #admin-panel button:hover { background: #219653; }
    .panel-section { display: inline-block; margin-right: 30px; vertical-align: top; }

    /* Małe przyciski usuwania elementów na ekranie */
    .del-btn {
        background: #e74c3c;
        color: white;
        border: none;
        padding: 2px 6px;
        font-size: 11px;
        border-radius: 3px;
        cursor: pointer;
        margin-left: 10px;
    }
    .del-btn:hover { background: #c0392b; }

    /* Specjalny styl dla przycisku usuwania nagłówka, wypychający go na bok */
    .header-del-btn {
        position: absolute;
        right: 0;
        top: -5px;
        z-index: 10;
        background: #e74c3c;
        color: white;
        border: none;
        padding: 4px 8px;
        font-size: 11px;
        border-radius: 4px;
        cursor: pointer;
    }
    .header-del-btn:hover { background: #c0392b; }

    /* Style ułatwiające edycję tekstu na ekranie monitora */
    [contenteditable="true"] {
        cursor: text;
        outline: none;
        transition: background-color 0.2s ease;
    }
    [contenteditable="true"]:hover {
        background-color: rgba(241, 196, 15, 0.1);
        border-radius: 3px;
    }
    [contenteditable="true"]:focus {
        background-color: rgba(241, 196, 15, 0.2);
        box-shadow: 0 0 4px rgba(241, 196, 15, 0.5);
    }

    #admin-panel button[onclick="window.print()"]:hover { background: #2471a3 !important; }

    /* CAŁKOWITE UKRYWANIE ELEMENTÓW PANELU I EDYCJI PODCZAS DRUKOWANIA */
    @media print {
        .no-print, 
        .del-btn, 
        #admin-panel,
        .header-del-btn { 
            display: none !important; 
        }
        [contenteditable="true"]:hover,
        [contenteditable="true"]:focus {
            background-color: transparent !important;
            box-shadow: none !important;
        }
    }