.fa-plus,
.fa-edit,
.fa-car,
.fa-shower,
.fa-search,
.fa-list-ol,
.fa-trash,
.fa-paperclip {
	-webkit-transition: color .2s ease-out;
	-moz-transition: color .2s ease-out;
	-o-transition: color .2s ease-out;
	transition: color .2s ease-out;
}

.fa-plus:hover,
.fa-edit:hover,
.fa-car:hover,
.fa-shower:hover,
.fa-search:hover,
.fa-list-ol:hover,
.fa-paperclip:hover {
    color: #00b300;
}

.fa-trash:hover {
    color: #b30000;
}


/* Pagination */
ul#lpages {
    display: table;
    margin: 10px 0;
    padding: 0;
    width: 100%;
    list-style: none;
}
ul#lpages li.ctitle {
    float: left;
    display: table;
    margin: 0 5px 0 0;
    padding: 3px 5px;
    font-size: 9pt;
    font-weight: normal;
    color: #000;
}
ul#lpages li.cpage {
    float: left;
    display: table;
    margin: 0 5px 0 0;
    padding: 0;
    border: 1px solid #bbb;
    font-size: 9pt;
    font-weight: normal;
    color: #333;
    background: #fff;
}
ul#lpages li.cactive {
    float: left;
    display: table;
    margin: 0 5px 0 0;
    padding: 0;
    border: 1px solid #bbb;
    font-size: 9pt;
    font-weight: normal;
    color: #333;
    background: #aaa;
}
ul#lpages li.cpage:hover {
    background: #eee;
}
ul#lpages li.cactive:hover {
    background: #aaa;
}
ul#lpages li.cpage a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2px 5px;
    font-size: 9pt;
    font-weight: normal;
    color: #333;
    text-decoration: none;
}
ul#lpages li.cactive a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2px 5px;
    font-size: 9pt;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}


.icon-stack {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 16px;
  margin: 0 0 -7px 0;
}

.icon-stack-main,
.icon-stack-top-left {
  position: absolute;
}
.icon-stack-top-left {
  left: 1px;
  top: -8px;
  font-size: 10px;
}


td.t0bF_45,
tr.t0bF_45 {
	font-family: arial, helvetica, sans-serif;
	text-decoration: none;
	font-weight: normal;
	font-size: 9pt;
	border: 1px solid #000;
	border-collapse: collapse;
	color: #000;
	background-color: #ffd7ae;
}


body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    overflow-x: hidden;
}

.fullscreen-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-img.active {
    opacity: 1;
}

.container {
    max-width: 850px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(236, 240, 241, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.header {
    text-align: center;
    background-color: #3498db;
    color: white;
    padding: 15px;
    border-radius: 8px 8px 0 0;
}

.header img {
    max-width: 200px;
    margin-bottom: 10px;
}

.form-row {
	display: flex;
	width: 100%; /* Cała szerokość formularza */
	gap: 20px; /* Odstęp między form-1 i form-2 */
}

.form-1,
.form-2 {
	flex: 1; /* Każdy z nich zajmuje równą część dostępnej przestrzeni */
	min-width: 250px; /* Minimalna szerokość, aby uniknąć zbytniego ściskania */
}

.form-3,
.rodo {
	width: 98%; /* Cała szerokość formularza */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
    color: #34495e;
    margin-top: 8px;
}

textarea,
select,
input:not([type="range"]) {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
}

.range-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.range-group span.range-label {
    flex: 0 0 75px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin-right: 15px;
}

/* Standardowe suwaki */
.range-group input[type="range"] {
    flex: 1;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #3498db 0%, #3498db var(--progress), #bdc3c761 var(--progress), #bdc3c761 100%);
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

/* Podwójny suwak */
.slider-container {
    position: relative;
    flex: 1;
    height: 8px;
	background-color: #bdc3c761;
	border-radius: 4px;
}

.slider-container input[type="range"] {
    position: absolute;
    width: 100%;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

/* Pasek aktywnej wartości */
.slider-track {
    position: absolute;
    height: 8px;
    background: #008be9;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.rodo {
    font-size: 12px;
    background-color: #ecf0f1;
    border-top: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    color: #2c3e50;
	width: 98%;
}

.rodo input {
    margin-right: 8px;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 20px; 
}

.btn:hover {
    background-color: #1f618d;
}

.slogan {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(236, 240, 241, 0.7);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 10px;
    }
    
    /* Na mniejszych ekranach układ formularza zmienia się na kolumnowy */
    .form-row {
        flex-direction: column;
    }
    
    .form-1,
    .form-2 {
        min-width: 0;
        width: 100%;
    }
}
