            /* ========== Barevný setup a fonty ========== */
            :root {
                --primary-color: #ff3b30;
                --primary-hover: #e03229;
                --bg-light: #ffffff;
                --text-dark: #1e1e1e;
                --border-light: #e0e0e0;
                --radius: 12px;
                --spacing: 1.2rem;
            }
            body {
                font-family: Arial, sans-serif; margin: 0; padding: 0;
            }
            /* Specifické nastavení content pro pricelist */
            .content {
                margin-top: 60px;
            }

            /* ========== Ceník ========== */
            .price-list {
                max-width: 800px; margin: 0 auto;
                background: var(--bg-light);
                box-shadow: 0 8px 24px rgba(0,0,0,0.05);
                border-radius: var(--radius);
                padding: var(--spacing);
            }
            .price-list h2 {
                margin: 0 0 var(--spacing);
                font-size: 2rem;
                color: var(--primary-color);
                text-align: center;
            }
            .price-list .item {
                display: flex;
                align-items: center;
                gap: 20px;
                padding: 18px 0;
                border-bottom: 1px solid var(--border-light);
                transition: background-color 0.2s ease;
                font-size: 1.1rem;
            }
            .price-list .item .service-icon {
                width: 40px;
                height: 40px;
                flex-shrink: 0;
            }
            .price-list .item span:first-of-type {
                flex: 1;
            }
            .price-list .item span:last-of-type {
                font-weight: 600;
                color: var(--primary-color);
                flex-shrink: 0;
            }
            .price-list .item:hover {
                background-color: #f8f9fa;
            }
            .price-list .item:last-child {
                border-bottom: none;
            }

            /* ========== Poznámky pod ceníkem ========== */
            .price-list .notes {
                margin-top: var(--spacing);
                padding-top: var(--spacing);
                border-top: 1px solid var(--border-light);
                font-size: 0.95rem;
                color: var(--text-dark);
            }
            .price-list .notes h3 {
                margin: 0 0 0.5rem;
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--primary-color);
            }
            .price-list .notes .note-item {
                margin-bottom: 0.5rem;
                display: flex;
                align-items: flex-start;
            }
            .price-list .notes .note-item::before {
                content: "—";
                display: inline-block;
                width: 1ch;
                margin-right: 0.5ch;
            }
            .price-list .notes .note-item:last-child {
                margin-bottom: 0;
            }

            /* ========== Responsivita ========== */
            /* Mobile responsive - základní responsive styly jsou v user_sidebar.css */
            @media (max-width: 768px) {
                .invoices-content .content { 
                    padding: 20px !important;
                    width: 100% !important;
                }
                .invoices-header {
                    flex-direction: column;
                    gap: 15px;
                    align-items: flex-start;
                }
                .invoices-header h2 {
                    font-size: 1.5rem;
                }
                .invoices-table {
                    font-size: 14px;
                }
                .invoices-table th,
                .invoices-table td {
                    padding: 8px 10px;
                }
            }
            @media (max-width: 600px) {
                .price-list .item {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    gap: 10px;
                }
                .price-list .item .service-icon {
                    width: 32px;
                    height: 32px;
                }
                .price-list .item span:first-of-type {
                    flex: 1;
                    font-size: 0.95rem;
                    line-height: 1.3;
                }
                .price-list .item span:last-child {
                    text-align: right;
                    font-size: 1rem;
                    font-weight: 700;
                    white-space: nowrap;
                }
            }

            /* ========== CSS pro faktury ========== */
            /* Širší zobrazení pouze pro stránku faktur */
            .invoices-content .content {
                max-width: none !important;
                width: calc(100% - 340px) !important;
                margin-left: 320px !important;
                margin-top: 60px !important;
                padding: 40px 20px 40px 20px !important;
                margin-right: 0px !important;
            }

            /* Rozšíření price-list kontejneru pouze pro faktury */
            .invoices-content .content .price-list {
                max-width: none !important;
                margin: 0 !important;
                width: 100% !important;
                padding: 0 !important;
                background: transparent !important;
                box-shadow: none !important;
                border-radius: 0 !important;
            }

            .invoices-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 30px;
                padding: 0 0 20px 0;
                border-bottom: 2px solid var(--border-light);
            }

            .invoices-header h2 {
                font-size: 2rem;
                font-weight: 600;
                color: var(--text-dark);
                margin: 0;
            }

            .invoices-table {
                width: 100%;
                border-collapse: collapse;
                margin-top: 30px;
                background: white;
                border-radius: var(--radius);
                overflow: hidden;
                box-shadow: 0 4px 16px rgba(0,0,0,0.08);
                border: 1px solid var(--border-light);
            }

            .invoices-table th,
            .invoices-table td {
                padding: 12px 16px;
                text-align: left;
                border-bottom: 1px solid var(--border-light);
            }

            .invoices-table th {
                background-color: #f8f9fa;
                font-weight: 600;
                color: var(--text-dark);
                text-transform: uppercase;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
            }

            .invoices-table tr:hover {
                background-color: #f8f9fa;
            }

            .invoices-table tbody tr:last-child td {
                border-bottom: none;
            }

            .status-badge {
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 11px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .status-paid {
                background-color: #d4edda;
                color: #155724;
                border: 1px solid #c3e6cb;
            }

            .status-issued {
                background-color: #d1ecf1;
                color: #0c5460;
                border: 1px solid #bee5eb;
            }

            .status-draft {
                background-color: #fff3cd;
                color: #856404;
                border: 1px solid #ffeaa7;
            }

            .status-cancelled {
                background-color: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
            }

            .download-btn {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
                color: white;
                padding: 8px 16px;
                border: none;
                border-radius: 6px;
                text-decoration: none;
                font-size: 13px;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.2s ease;
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

            .download-btn:hover {
                background: linear-gradient(135deg, var(--primary-hover), #c82333);
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
            }

            .no-invoices {
                text-align: center;
                padding: 60px 20px;
                color: #666;
                background: #f8f9fa;
                border-radius: var(--radius);
                margin-top: 10px;
            }

            .no-invoices p {
                margin: 0 0 10px 0;
                font-size: 1.1rem;
            }

            .no-invoices a {
                color: var(--primary-color);
                text-decoration: none;
                font-weight: 500;
            }

            .no-invoices a:hover {
                text-decoration: underline;
            }

            /* ========== Klikatelné položky pro kalkulaci ========== */
            .clickable-item {
                cursor: pointer;
                transition: all 0.3s ease;
                border-left: 4px solid transparent;
                padding-left: 16px !important;
            }

            .clickable-item:hover {
                background-color: #f0f7ff !important;
                border-left-color: #4f9cf9;
            }

            .clickable-item.selected {
                background-color: #e3f2fd !important;
                border-left-color: #3b82f6;
                box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
            }

            .clickable-item.selected .price-display {
                color: #3b82f6;
                font-weight: 700;
            }
        </style>
