.container-banner {
	grid-column: 2/6 !important;
	display: grid;
	grid-template-columns: .5fr 1fr;
	align-items: center;
	margin-top: 20px;
}

@media (max-width: 991px) {
	.container-banner {
		grid-template-columns: 1fr;
	}
}

/* baner-koluny */
.container-banner-ukryty {
	grid-column: 2/6 !important;
	margin-top: 20px;
}

.contacts-block {
	display: grid;
	grid-template-columns-ukryty: .5fr 1fr;
	align-items: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.contacts-block__image {
	max-height: 200px;
	height: 100%;
}

.contacts-block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.contacts-block__adress {
	padding: 30px;

}

@media (max-width: 991px) {
	.contacts-block {
		grid-template-columns: 1fr;
	}
}

.site-grid {
	grid-template-columns: [full-start] minmax(0, 1fr) [main-start] minmax(0, 12.875rem) repeat(2, minmax(0, 20.875rem)) minmax(0, 25.875rem) [main-end] minmax(0, 1fr) [full-end];
}


.container-header {
  background-color: #000000;
  background-image: none; 
}    

.container-footer {
   background-color: #000000;
  background-image: none; 

}

/* Oto pełna, poprawiona i responsywna tabela z Twoimi 38 wierszami, gotowa do wklejenia do strony:*/

<style>
.CSSTableGenerator {
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
    font-family: Arial, sans-serif;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.CSSTableGenerator table {
    width: 100%;
    border-collapse: collapse;
}

.CSSTableGenerator th, 
.CSSTableGenerator td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.CSSTableGenerator th {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

.CSSTableGenerator tr:nth-child(even) {
    background-color: #f9f9f9;
}

.CSSTableGenerator tr:hover {
    background-color: #f1f1f1;
}

.CSSTableGenerator img {
    max-width: 30px;
    height: auto;
}

.CSSTableGenerator a.btn {
    background-color: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background 0.3s;
}

.CSSTableGenerator a.btn:hover {
    background-color: #217dbb;
}

/* Responsywność */
@media (max-width: 768px) {
    .CSSTableGenerator table, 
    .CSSTableGenerator thead, 
    .CSSTableGenerator tbody, 
    .CSSTableGenerator th, 
    .CSSTableGenerator td, 
    .CSSTableGenerator tr {
        display: block;
        width: 100%;
    }

    .CSSTableGenerator thead tr {
        display: none;
    }

    .CSSTableGenerator tr {
        margin-bottom: 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .CSSTableGenerator td {
        text-align: left;
        padding: 8px 15px;
        position: relative;
    }

    .CSSTableGenerator td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #333;
    }
}
</style>




/* Styl dla nowej pozycji modułu "custom" */
.custom-module {
    background-color: #f0f0f0; /* Jasnoszare tło */
    padding: 20px; /* Wewnętrzne odstępy */
    margin: 20px 0; /* Zewnętrzne odstępy */
    border-radius: 8px; /* Zaokrąglone rogi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Cień */
}

.custom-module h3 {
    font-size: 24px; /* Wielkość czcionki nagłówka */
    color: #333; /* Kolor czcionki nagłówka */
    margin-bottom: 10px; /* Odstęp poniżej nagłówka */
}

.custom-module p {
    font-size: 16px; /* Wielkość czcionki tekstu */
    color: #666; /* Kolor czcionki tekstu */
    line-height: 1.5; /* Wysokość linii */
}

/* Styl dla nowej pozycji modułu "tobar" */
.container-topbar {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(4,1fr);
}

.container-topbar {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

.container-topbar > div {
  grid-column: span 4;
}

@media (min-width: 700px) {
  .container-topbar > div {
    grid-column: span 2;
  }
}

@media (min-width: 1000px) {
  .container-topbar > div {
    grid-column: span 1;
  }
}

/* obok siebie*/
.container-search {
	display: flex;
	justify-content: end;
	align-items: center-1;
	gap: 1em;
}
.container-search .search.card {
	margin: 0;
}

/* top c i bottom c */

.container-bottom-c {
    grid-area: bot-c;			
}

.container-top-c {
    grid-area: top-c;		  
}

.site-grid {
    grid-template-areas: 
        ".top-a top-a top-a top-a." 
        ".top-b top-b top-b top-b." 
		".top-c top-c top-c top-c."
        ".comp comp comp comp." 
        ".side-r side-r side-r side-r." 
        ".side-l side-l side-l side-l." 
        ".bot-a bot-a bot-a bot-a." 
        ".bot-b bot-b bot-b bot-b." 
        ".bot-c bot-c bot-c bot-c.";
}

@media (width>=992px) {
    .site-grid {
        grid-template-areas: 
            ".banner banner banner banner." 
            ".top-a top-a top-a top-a." 
            ".top-b top-b top-b top-b." 
			".top-c top-c top-c top-c."
            ".side-l comp comp side-r." 
            ".bot-a bot-a bot-a bot-a." 
            ".bot-b bot-b bot-b bot-b."
            ".bot-c bot-c bot-c bot-c.";
        }
}

/* Styl dla nowej pozycji modułu "top-c  */
.container-top-c {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
 
}

.container-top-c > div {
  grid-column: span 4;
}

@media (min-width: 700px) {
  .container-top-c > div {
    grid-column: span 2;
  }
}

@media (min-width: 1000px) {
  .container-top-c > div {
    grid-column: span 1;
  }
}

.container-top-c {
   
    padding: 20px; /* Wewnętrzne odstępy */
    margin: 20px 0; /* Zewnętrzne odstępy */
    border-radius: 8px; /* Zaokrąglone rogi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Cień */
}

/* Styl dla nowej pozycji modułu "botom-c  */
.container-bot-c {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
 
}

.container-bot-c > div {
  grid-column: span 4;
}

@media (min-width: 700px) {
  .container-bot-c > div {
    grid-column: span 2;
  }
}

@media (min-width: 1000px) {
  .container-bot-c > div {
    grid-column: span 1;
  }
}

.container-bot-c {
   
    padding: 20px; /* Wewnętrzne odstępy */
    margin: 20px 0; /* Zewnętrzne odstępy */
    border-radius: 8px; /* Zaokrąglone rogi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Cień */
}
