html, body {
    direction: ltr;
    color: #3C4858;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
    line-height: 1.618;
	height: 100%; /* Zapewniamy, że cała wysokość strony jest dostępna */
    margin: 0; /* Usuwamy domyślne marginesy */
    display: flex;
    flex-direction: column; /* Ustawiamy flex w kolumnie, by elementy układały się pionowo */
	
}
.mait {
	margin: -60px 30px 0;
    border-radius: 6px 6px 0 0;
    /* -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
	background-color: #fafffc;
	flex-grow: 1;
}
.niemait {
	margin: -20px 10px 0;
	padding: 0 3px;
	border-radius: 6px 6px 0 0;
	box-shadow: 0 -10px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    background-color: #fafffc;
	flex-grow: 1;
}

/* Dla rozdzielczości poniżej 749px */
@media (max-width: 749px) {
    .mait {
        margin: -60px 0; /* Usuwamy marginesy */
        box-shadow: none; /* Usuwamy cieniowanie */
		border-radius: 0;
    }
}
/* Główny kontener */
.mai-to {
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}
.niemai-to {
    display: none;
    }

/* Tło */
.background-to {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-position: center center;
    background-size: cover;
    /* Pseudo-element do overlay */
}

.background-to::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Półprzeźroczysty czarny overlay */
    z-index: 1; /* Overlay musi być nad obrazkiem, ale pod treścią */
}

/* Menu */
.menu-to {
    min-height: 60px; /* Dopasuj wysokość menu */
    background-color: rgba(255, 255, 255, 0.72); /* Przykładowy półprzezroczysty pasek */
    position: fixed; /* Menu będzie zawsze widoczne */
    top: 0; /* Ustalamy pozycję menu na górze */
    left: 0;
    right: 0;
    z-index: 10; /* Ustawiamy wyższy z-index, aby menu było na wierzchu */
    padding: 10px 0; /* Wygodne marginesy */
}

/* Kontener wewnętrzny */
.container-to {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Treść */
.content-to {
	margin-top: 60px;
    text-align: center;
}

/* Nagłówek */
.content-to h1 {
    font-family: "Roboto Slab", "Times New Roman", serif;
    font-size: 2.5rem;	
	font-weight: 700;
    color: white;
    position: relative; /* Ustawienie pozycji, aby h1 było nad overlay */
    z-index: 2; /* Nagłówek na wierzchu, nad półprzeźroczystym tłem */
}
/* Dla rozdzielczości poniżej 749px */
@media (max-width: 749px) {
	.content-to {
		margin-top: 40px;
		text-align: center;
	}

/* Nagłówek */
	.content-to h1 {
		font-family: "Roboto Slab", "Times New Roman", serif;
		font-size: 2rem;	
		font-weight: 700;
		color: white;
		position: relative; /* Ustawienie pozycji, aby h1 było nad overlay */
		z-index: 2; /* Nagłówek na wierzchu, nad półprzeźroczystym tłem */
}
}


.container {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
}

@media (min-width: 749px) {
    .container {
        max-width: 748px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
/*
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}*/

.containers {
  display: flex; /* Włącza Flexbox */
  width: 100%; /* Szerokość kontenera */
}

.column-25 {
  flex-basis: 25%;

  padding: 10px;
}

.column-75 {
  flex-basis: 75%;
  overflow: hidden;
  padding: 10px;
}

.column-15 {
  flex-basis: 15%;

  padding: 10px;
}

.column-85 {
  flex-basis: 85%;
overflow: hidden;
  padding: 10px;
}
@media (max-width: 768px) {
  .containers {
    flex-direction: column; /* Układa kolumny jedna pod drugą na małych ekranach */
  }
  .column-25, .column-75 {
    flex: 0 0 100%; /* Kolumny zajmują 100% szerokości na małych ekranach */
	padding: 0;
  }
}
/* Podstawowe style - desktop */
.menu-container {
    display: block;
}
.menu-button {
    display: none;
    position: fixed;
    top: 100px;
    left: 20px;
    background-color: #005b06;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
    writing-mode: vertical-rl; /* Tekst pionowo */
    text-orientation: upright; /* Litery prosto, nie obrócone */
    letter-spacing: 2px; /* Odstęp między literami */
}

/* Gdy menu jest aktywne (otwarte jako overlay) */
.menu-container.active {
    display: block !important;
    position: fixed;
    top: 120px;
    left: 0;
    height: calc(100% - 120px);
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile - menu zawsze chowane */
@media (max-width: 768px) {
    .menu-container {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .menu-container.active {
        display: block;
        position: fixed;
        top: 120px;
        left: 0;
        width: 75%;
        height: calc(100% - 120px);
        background-color: white;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
        padding: 20px;
    }
}
.lewycontainer {
	margin-left:10px;
}
.wciety {
	text-indent:25px;
}
.zopaska {
    color: #005b06;
    text-shadow: 2px 2px 3px #CCFFCC;
    font-weight: bold;
    font-size: 0.9375rem;
    border: 2px solid #ccffcc;
  /*  border-bottom: 2px solid #005b06;*/
    padding: 2px 15px;
    background: linear-gradient(145deg, #f0fff0, #ccffcc);
    box-shadow: 3px 3px 6px #b3d9b3,
                -3px -3px 6px #ffffff;
    border-radius: 8px;
    transition: all 0.1s ease;
    margin-bottom: 10px;
    list-style-type: none;
}

.zopaska:hover, .zopaska.active-menu-item {
    color: black;
    text-shadow: 1px 1px 2px #00FF00;
    box-shadow: 1px 1px 3px #b3d9b3,
                -1px -1px 3px #ffffff;
   transform: translateY(-2px);
	transform: translateX(2px);
/*
	font-size: 0.9375rem;	 
*/
}

.change {
    font-weight: bold;
    text-decoration: underline;
}

.aktywnemenu {
    background: linear-gradient(90deg, #e6ffe6, #66FF33);
    border: 2px solid #66FF33;
  /*  border-bottom: 2px solid #005b06;*/
}
.naliczenie-link {
	padding: 8px;
		font-size: 0.875rem;
    text-shadow: 2px 2px 3px #CCFFCC;
    font-weight: bold;
		text-decoration: underline;
		}
.dlalinku {
	overflow: hidden; /* Zapobiega "rozpychaniu" */
}
.naliczenie-link:hover {
	padding: 9px;
	font-size: 0.9375rem;
	color:#005b06;
    text-shadow: 1px 1px 1px #66FF33;
    font-weight: bold;
		text-decoration: underline;
		}
.podkrborderem {
	border-bottom: 2px solid #005b06;
}
.mojhr {
	border: 1px solid #005b06;
	margin: 0 auto;
	max-width:400px;
}
.mojinput {
	border-color: #005b06;
	border-style: solid;
	border-width: 0 0 2px 0;
	border-radius: 5px;
}
.ramka {
	border-color: #005b06;
	border-style: solid;
	border-width: 1px 0 1px 0;
	border-radius: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
	background: white;
}
.mojatabb, .mojatabb th, .mojatabb td, .mojatabb tr {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
    vertical-align: middle;
}
.mojatab, .mojatab th, .mojatab td, .mojatab tr {
    border: none;
    padding: 5px;
    vertical-align: middle;
}
button, input[type="submit"], input[type="button"], .btn, .btn-primary {
    background-color: #005b06;
	border-radius: 5px;
	border: none;
	padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 13px;
    padding-right: 13px;
	color: #fff;
	text-transform: uppercase;
	font-size: 0.8125rem;
    font-weight: 400;
	outline: none;
/*	margin-left: 20px;*/
	white-space: normal;
	cursor: pointer;
}
.btn1 {
	    background-color: #005b06;
	border-radius: 5px;
	border: none;
	padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 23px;
    padding-right: 23px;
	color: #fff;
	text-transform: uppercase;
	font-size: 0.8125rem;
    font-weight: 400;
	outline: none;
	margin: 20px;
	white-space: nowrap;
	cursor: pointer;
}
.btn2 {
	background-color: #005b06;
	border-radius: 5px;
	border: none;
	padding: 3px 10px;
	margin: 1px;;
	color: #fff;
	text-transform: uppercase;
	font-size: 0.8125rem;
    font-weight: 400;
	outline: none;
	white-space: nowrap;
	cursor: pointer;
}
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="date"]
  {
    width: 90%;
    padding: 5px;
	border-top: none; /* Usuwamy górne obramowanie */
  border-left: none; /* Usuwamy lewe obramowanie */
  border-right: none; /* Usuwamy prawe obramowanie */
  border-width: 1px;
  }
   input[type="date"] {
	   font-size: 0.875rem;
   }
input:focus {
  border-top: none; /* Usuwamy górne obramowanie */
  border-left: none; /* Usuwamy lewe obramowanie */
  border-right: none; /* Usuwamy prawe obramowanie */
  border-color: green;
  border-width: 1px;
  outline: none; /* Usuwa domyślny obrys */
}
textarea {
    width: 90%;
    padding: 5px;
    border: none; /* Usunięcie domyślnej ramki */
    border-bottom: 1px solid green; /* Dolna ramka */
    outline: none; /* Usunięcie podświetlenia po kliknięciu */
    resize: vertical; /* Możliwość zmiany wysokości */
}

textarea:focus {
    border: none; /* Zapewnia, że nie pojawi się pełna ramka */
    border-bottom: 1px solid green;
    outline: none;
}
  select {
    width: 90%;
    padding: 5px;
	border-top: none; /* Usuwamy górne obramowanie */
  border-left: none; /* Usuwamy lewe obramowanie */
  border-right: none; /* Usuwamy prawe obramowanie */
  border-width: 1px;
  }
select:focus {
  border-top: none; /* Usuwamy górne obramowanie */
  border-left: none; /* Usuwamy lewe obramowanie */
  border-right: none; /* Usuwamy prawe obramowanie */
  border-color: green;
  border-width: 1px;
  outline: none; /* Usuwa domyślny obrys */
}
a {
    color: #005b06;
}
 a:hover {}
#pojnal-container table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#pojnal-container th,
#pojnal-container td {
    padding: 8px;
    border: 1px solid #ddd;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

#pojnal-container td:nth-child(2) {
    white-space: normal;
    word-break: break-word;
}

@media screen and (max-width: 768px) {
    #pojnal-container table {
        font-size: 0.875rem;
    }
    #pojnal-container th,
    #pojnal-container td {
        padding: 5px 2px;
    }
}

@media screen and (max-width: 480px) {
    #pojnal-container table {
        font-size: 0.75rem;
    }
    #pojnal-container th,
    #pojnal-container td {
        padding: 3px 1px;
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    position: relative;
    border-radius: 15px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 1.8125rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#pojnal-content table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#pojnal-content th,
#pojnal-content td {
    padding: 8px;
    border: 1px solid #ddd;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

#pojnal-content td:nth-child(2) {
    white-space: normal;
    word-break: break-word;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    #pojnal-content table {
        font-size: 0.875rem;
    }
    #pojnal-content th,
    #pojnal-content td {
        padding: 5px 2px;
    }
}

@media screen and (max-width: 480px) {
    #pojnal-content table {
        font-size: 0.75rem;
    }
    #pojnal-content th,
    #pojnal-content td {
        padding: 3px 1px;
    }
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Dodaje inercyjne przewijanie na urządzeniach mobilnych */
}

.table-responsive table {

    border-collapse: collapse;
}
table.talela-paski {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid white;
}

table.talela-paski th, table.talela-paski td {
  padding: 8px;
  text-align: left;
  border: 1px solid white; /* Dodajemy obramowanie do każdej komórki */
}

table.talela-paski tr:nth-child(even) {
  background-color: #f2f2f2;
}

table.talela-paski tr:nth-child(odd) {
  background-color: #e0e0e0;
}
.mojparagraf, .mojalista, .mojalistasel{
	font-size: 0.9375rem;
}
.mojalistasel {
	line-height:1.5em;
	max-width:350px;
	padding: 3px 10px;
}
   .dane-dzialkowca table {
        border-collapse: collapse;
        width: auto;
    }
    .dane-dzialkowca th, .dane-dzialkowca td {
        border-bottom: 1px solid #ddd;
        padding: 8px;
      /*  white-space: nowrap;*/
		margin-right:20px;
    }
    .dane-dzialkowca th {
        text-align: right;
        font-weight: bold;
    }
    .dane-dzialkowca td {
        text-align: left;
    }
    .komunikat {
        margin-top: 20px;
        font-style: italic;
		font-size: 0.9375rem;
    }
	    .clickable {
        cursor: pointer;
        text-decoration: underline;
        font-weight: bold;
    }

  .containerform {
    width: 190mm;
    margin: 0 auto;
  }
  .headerform {
    background-color: #e5e5e5;
    padding: 20px;
    border: 1px solid #000;
  }
  .header-contentform {
    display: flex;
    align-items: center;
  }
  .logoform {
    width: 20%;
    margin-right: 20px;
  }
    .gray-bgfrm {
    background-color: #e5e5e5;
	font-size: 1em;
  }
    .centerfrm {
    text-align: center;
	padding: 10px 0 10px;
  }
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
	font-weight: 300;
    line-height: 1.618;
	color: inherit;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
	font-size: 1em;
}
.gornypadding {
	padding-top: 20px;
}
.gornymargin {
	margin-top: 10px;
}
.dolnymargin {
	margin-bottom: 10px;
}
.catheader {
	font-size: 1.7em;
	margin: 0 0 10px;
}
figure img {
    max-width: 100%;
    height: auto;
}
        /* Kontener menu */
        .menmsv {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
			margin-top: 20px;
        }

        /* Menu w poziomie */
        .memsv {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
			flex-wrap: wrap;
        }

        .memsv li {
            display: inline;
            text-transform: uppercase;
        }

        .memsv li a {
            text-decoration: none;
            color: #005b06;
            text-shadow: 2px 2px 3px #fff;
            font-weight: bold;
            font-size: 0.875rem;
            border-top: 2px solid #005b06;
            border-bottom: 2px solid #005b06;
            padding: 8px 15px;
            margin-right: 15px;
            display: inline-block;
			white-space: nowrap;
        }

        .memsv li a:hover {
            color: #000;
            font-size: 0.875rem;
            text-shadow: 1px 1px 1px #000;
			white-space: nowrap;
        }

        /* Logo */
        .logo-msv {
            width: 60px;
			margin-top: -15px;
        }
		    .logo-msv1 {
            display: none;
        }

        /* Ukrycie mobilnego menu na desktopie */
        .hamburger-msv {
            display: none;
            font-size: 40px;
            cursor: pointer;
			padding-right: 15px;
        }

        /* Responsywność: na telefonie menu ukryte, pojawia się przycisk */
        @media (max-width: 768px) {
            .memsv {
				margin-top: 50px;
              display: flex;
			  flex-direction: column;
			          position: absolute;
        top: 50px;
        right: 10px;
		text-align: right;
            }

	
        .logo-msv1 {
			display: block;
            width: 60px;
			margin-top: -35px;
        }
		    .logo-msv {
            display: none;
        }

            .hamburger-msv {
                display: block;
				color: black;
            }
		}
.menu-checkbox {
    display: none;
}

@media (max-width: 768px) {
    .memsv {
        display: none;
        margin-top: 50px;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        text-align: right;
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        padding: 10px;
    }

    .menu-checkbox:checked ~ .memsv {
        display: flex;
    }

    .logo-msv1 {
        display: block;
        width: 60px;
        margin-top: -15px;
    }

    .logo-msv {
        display: none;
    }

    .hamburger-msv {
        display: block;
    }

    .memsv li {
        margin-bottom: 0;
    }

    .memsv li a {
        display: block;
        padding: 8px 15px 8px;
        margin-right: 0;
    }
button, input[type="submit"], input[type="button"], .btn, .btn-primary {
	padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 15px;
    padding-right: 15px;

}
.menu-to {
	max-height:70px
}
        .menmsv {
			margin-top: 0;
        }
.dlaprzyc {
        flex-direction: column;
        align-items: stretch; /* Zapewnia pełną szerokość dla elementów */
    }

    .flex-item {
        margin-bottom: 10px; /* Dodaj odstęp między elementami na urządzeniach mobilnych */
    }


}

.listaoplacone {
	font-size: 1em;
	line-height: 1.618;
}
.dlaprzyc {
	max-width:196mm;
	margin: 15px 0; 
	display: flex; 
    justify-content: center; /* Ustawienie elementów na środku */
    align-items: center;
	gap: 20px; /* Dodanie odstępu między elementami */
}
.flex-item {
    text-align: left;
}
.stopka {
    background: #323437;
    padding: 30px 0 18px;
    color: #fff;
    font-size: 0.75rem;
}

.flex-container {
    display: flex;
    justify-content: space-between; /* Rozdziela elementy na krańce kontenera */
    align-items: center;
    gap: 20px; /* Dodaje odstęp między elementami */
}

.styl-sto {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Równe odstępy między elementami listy */
    text-transform: uppercase;
}

.styl-sto a {
    color: #fff;
	opacity: 0.86;
    text-decoration: none;	
	font-weight: 600;
}

.styl-sto a:hover {
    color: #ccc;
}

.opracowanie {
    flex-shrink: 0; /* Zapobiega ściskaniu tekstu copyright */
	font-size: 0.875rem;
	opacity: 0.86;
	font-weight: 300;
}

.opracowanie a {
    color: #fff;
	opacity: 0.86;
    text-decoration: none;
}

.opracowanie a:hover {
    color: #ccc;
}

/* Responsywność dla małych ekranów */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        text-align: center;
    }
    
    .styl-sto {
        justify-content: center;
    }
    
    .opracowanie {
        margin-top: 20px;
    }
}

.nali table {
    border-collapse: collapse;
    border: 0;
}

.nali tr, .nali td, .nali th {
    border: 1px solid black;
    padding: 7px;
	font-size: 1em;
}
@media (max-width: 768px) { 
    .nali tr, .nali td, .nali th {
        padding: 3px;
        font-size: 0.85em;
        line-height: 1.1;
		color: black;
        font-family: "Open Sans Condensed", sans-serif;
        font-stretch: condensed; /* Dla lepszego efektu w nowoczesnych przeglądarkach */
    }
}
.nali1 table {
    border-collapse: collapse;
    border: 0;
}

.nali1 td, .nali1 th {
    border: 1px solid black;
    padding: 5px;
    font-size: 0.9em;
}

.nali1 tr {
    /* Usuwamy border z tr, aby uniknąć nakładania się */
}
.wp-block-table {
	margin: 0;
}
.infolog {
	 text-align:right;
	 font-size: 0.8em;
	 color: #005b06;
	 padding-right:50px;
}
  .ldzflex-container {
    display: flex;
    gap: 20px;
	max-width: 700px;
	align-items: center;
	
  }
  .ldzflex-column {
  /*    min-height: 150px;
   Ustawiamy kursor, aby wskazać, że kolumna jest klikalna */
    cursor: pointer;
  }
    .ldzflex-column1 {
		  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  /* Wygaszona kolumna – zmniejszona przezroczystość */
  .ldzdisabled {
    opacity: 0.5;
  pointer-events: none; 
  }
  /* Upewniamy się, że elementy wewnątrz kolumny nie przejmują kursora */
  .ldzflex-column input {
    cursor: auto;
  }
  .parmin {
	  margin: 0;
	  font-size: 0.9em;
  }
    .parmincol {
	  background-color: #e0e0e0;
  }
  
  /* Dropdown menu styles */
.memsv .dropdown {
    position: relative;
}

.memsv .dropdown-toggle {
    cursor: pointer;
}

.memsv .dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.70);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    min-width: 200px;
    display: none !important;
}

.memsv .dropdown:hover .dropdown-menu {
    display: block !important;
}

.memsv .dropdown-menu li {
    display: block;
    width: 100%;
}

.memsv .dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    margin-right: 0;
    border-top: 2px solid #005b06;
            border-top: 2px solid #005b06;
      border-bottom: 2px solid #005b06;
	margin-top: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.8125rem;
}

.memsv .dropdown-menu li a:hover {
    background-color: rgba(0, 91, 6, 0.1);
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .memsv .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: transparent;
        margin-left: 20px;
    }
    
    .memsv .dropdown-menu li a {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}
.menu-to {
   /* overflow: visible !important;*/
}

.menmsv {
    overflow: visible !important;
}
.bold-italic-underline {
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}
.pogr {
    font-weight: bold;
}
		#btnGeneruj:disabled {
  background-color: #cccccc;
}
/* Strzałka przy menu rozwijanym */
.has-submenu-arrow {
    position: relative;
    padding-right: 25px !important;
}

.has-submenu-arrow::after {
    content: ' ▼';
  /*  position: absolute;
    right: 8px; */
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: inherit;
}

.submenu-open .has-submenu-arrow::after {
    transform: rotate(180deg);
}

.content-centered {
    width: fit-content;
	max-width:100%;
  /*    margin: 0 auto;
  min-width: 80%;  żeby nie było za wąsko */
}

.zielony-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: white;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-weight: 600;
	min-width: 800px;
}
.logoplaty-container {
    padding: 6px;
    max-width: 1200px;
}
.tabela-scroll-log {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #ccc;
    margin-bottom: 8px;
}
.tablelog {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.85rem;
}
.tablelog th, .tablelog td {
    border: 1px solid #ccc;
    padding: 3px 6px;
}
.tablelog thead tr {
    background: #2c5f2d;
    color: white;
    position: sticky;
    top: 0;
    z-index: 5;
}
.tablelog th {
    background: #2c5f2d;
    color: white;
	/*
	background: #C0C0C0;*/ /* #2c5f2d */
    /*color: #3C4858;*/ /* white */
	
	
}
.tablelog tbody tr:nth-child(even) { background: #f5f5f5; }
.tablelog tbody tr:hover { background: #e8f5e9; }

.success-message, .error-message {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 300px;
    text-align: center;
    transition: opacity 1s ease;
}