/* Tlo strony */
body {
    background-image: url('tlo.jpg');
    background-size: cover; /* Tlo wypelnia cala strone */
    background-position: center center; /* Tlo wysrodkowane */
    background-repeat: no-repeat; /* Tlo nie bedzie sie powtarzac */
    background-attachment: fixed; /* Tlo statyczne na duzych ekranach */
    min-height: 100vh; /* Minimalna wysokosc strony */
    margin: 0;
}

/* Na mniejszych ekranach (telefony) */
@media (max-width: 767px) {
	.table_uz{
		font-size:11px;
	}
	.table_uz th, .table_uz td {
		padding: 4px 6px;
	}
	.comment-gray{
		font-size:11px;
	}
}


/* Styl dla tabeli */
.table_uz {
    background-color: rgba(0, 0, 0, 0.7); /* Czarne tlo z przezroczystoscia */
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(255, 255, 255, 0.3);
    border: none;
    width: 100%; /* Pelna szerokosc */
    margin-top: 30px;
}

.table_uz th, .table_uz td {
    text-align: center;
    padding: 12px 15px;
    vertical-align: middle;
    color: #c0c0c0;
}

.table_uz th {
    background-color: rgba(255, 192, 0, 0.6);
    color: #fff;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.table_uz td {
    background-color: rgba(255, 255, 255, 0.05); /* Przezroczystosc komórek */
}