/*		Style dla okna modalnego	*/
.okno_modalne {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.4);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: scroll;
	z-index: 1;
}

.okno_modalne_tlo {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	margin-bottom: 80px;
	background-color: white;
	border-radius: 8px;
}

.okno_modalne_zawartosc {
    padding: 15px
}

.okno_modalne_belka {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background-color: black;
	padding: 2px;
    text-align: center;
	color: white

}

.okno_podpis { 
}

.okno_przycsik_x {
    float:right
}


/* OK tutaj mam zaznaczanie tabeli */

tr.selectedRow  { background-color: #d0d0d0; border-bottom: 2px black solid;   }  /* to jest zaznaczony wiersz */
tr.regularRow{  }  /* to jest zwykly wiersz - tutaj powinno byc pusto - zwykle wiersze stylujemy w innym miejscu */



.property {
    display: flex;
    align-items: center; /* Opcjonalne, aby wyrównać elementy pionowo */
}

.property .inputContainer {
    width: 100px; /* Możesz dostosować szerokość według potrzeb */
}

.property span {
    margin-left: 10px; /* Dodatkowy margines między kontenerem a etykietą */
}



/* a to jest tab property page */


 .property {
    border-bottom: 1px solid black;
    vertical-align: top
}

.label {
    width: 200px
}

.value {
    width: 100%
}


table {
    max-width: 1200px;
    border-collapse: collapse;
    width: 100%;
    margin-top: 30px;
}
    


tr:not(.selectedRow):not(:hover):nth-child(even) {
    background-color: #f5f5f5; border-bottom: solid 1px #f5f5f5
}

tr:not(.selectedRow):not(:hover):nth-child(odd) {
    background-color: #ffffff; border-bottom: solid 1px #ffffff
}

tr:not(.selectedRow):hover:nth-child(even) {     background-color: #f5f5f5; border-bottom: solid 1px black }

tr:not(.selectedRow):hover:nth-child(odd)  {     background-color: #ffffff; border-bottom: solid 1px black }



.hasTooltip {
    position:relative
}
.hasTooltip span {
    display:none;
}

.hasTooltip:hover span {
	z-index: 10;
    display:block;
    background-color:black;
    border-radius:5px;
    color:white;
    box-shadow:1px 1px 3px gray;
    position:absolute;
    padding:5px;
    top:1.3em;
    left:0px;   
    max-width:400px; /* I don't want the width to be too large... */
}

/* tab component */
.j2j-tab-container {
    z-index: 11; position: relative;
}
.j2j-tab-buttons {
    z-index: 10; position: relative;
}

.j2j-tab-container {  /* wszystko co ma klase j2j-tab-container */
    min-height: 150px;
    border: none;
    background-color: transparent;
}
.j2j-tab-container>.j2j-tab-buttons {
    border: none;
    background-color: transparent;
}
.j2j-tab-container>.j2j-tab-buttons>button.active { 
    background-color: #fff;
    
}
.j2j-tab-container:not(.vertical)>.j2j-tab-buttons>button.active { 
    border-bottom: 1px #fff solid; margin-bottom: -1px
}
.j2j-tab-container.vertical>.j2j-tab-buttons>button.active { 
    border-right: 1px #fff solid; width: 201px; margin-right: -1px    
}
.j2j-tab-container>.j2j-tab-buttons>button {
    background-color: #ccc;
    color: #000;
    font-family: "Titillium Web";
    font-size: 16px; 
    padding: 5px;  
    border: 1px solid black;
    margin: 0px
}
.j2j-tab-container.vertical>.j2j-tab-buttons>button {
    border-right: none;
}
.j2j-tab-container:not(.vertical)>.j2j-tab-buttons>button {
    border-right: 1px solid black;
    border-left: none;
    border-bottom: none;
}
.j2j-tab-container.vertical>.j2j-tab-buttons>button:first-child { 
    border-top: 1px solid black;
}
.j2j-tab-container>.j2j-tab-buttons>button:first-child { 
    border-left: 1px solid black;
}
.j2j-tab-container.vertical>.j2j-tab-buttons>button { 
    display:block;
    width:200px;
    border-left: 1px solid black;
    border-top: 0px;
    
}
.j2j-tab-container>.j2j-tab-buttons { font-size: 0px; } /* nie chcemy widzieć spacji pomiędzy buttonami */
.j2j-tab-container>.j2j-tab-buttons>button:hover:not(.active) { background-color: #f1f1f1; }
.j2j-tab-container.vertical { display: flex; }
.j2j-tab-container>div.j2j-tab-containers { width:100%; background-color: white; border: 1px solid black } /* żeby nie było wątpliwośći to jest konkretny div */
.j2j-tab-container>.j2j-tab-containers>div {  background-color: white; border: 0px; display: none } 

