	.ZP-table {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* Liczba kolumn zależna od liczby komórek */
		border-collapse: collapse;
		width: 100%;
	}

	.ZP-table-header {
		background-color: #f4f4f4;
		font-weight: bold;
	}

	.ZP-table-cell,
	.ZP-table-header .ZP-table-cell {
		padding: 10px;
		border: 1px solid #ddd;
	}

	.ZP-table-row {
		display: contents;
		/* Zastępuje rodzica (row) */
	}

	/* Stylowanie responsywne (dla telefonów) */
	@media (max-width: 768px) {
		.ZP-table {
			display: block;
			/* Zmieniamy na układ blokowy */
		}

		.ZP-table-row {
			display: flex;
			flex-direction: column;
			margin-bottom: 15px;
			/* Odstęp między "wierszami" */
		}

		.ZP-table-cell {
			display: flex;
			
			padding: 10px;
			border: none;
			border-bottom: 1px solid #ddd;
		}

	}