/* BASIC */
@charset "UTF-8";

:root {
/*  --primary-color: linear-gradient(90deg, rgb(235, 235, 235) 5%, rgb(239, 235, 235) 20%, rgb(199, 196, 196) 40%, rgb(199, 196, 196) 60%, rgb(239, 235, 235) 80%, rgb(235, 235, 235) 95%);*/
/*  --primary-color: #b4c1bf;*/
/* példa: background: var(--primary-color)	*/
/*  --primary-color: #d3d3d3;*/
/*  --primary-color: #EFEBEB;*/
  --primary-color: #F9F9F9;
	--fontColor: #7e7272;
/*	--fontColor: #D3E3FD;*/
	--buttonColor: #4d4d4d;
  --bgColor: #c8d5e0;
/*	--buttonColor: #D3E3FD;*/
}

/* ez a pici segéd a képernyő (box) méretének a kiírására szolgál*/
.vw {
  font-size: 2rem;
  color: #ffff00;
  background-color: rgba(0, 0, 0, 0.62);
  padding: 1rem;
  border-bottom-left-radius: 10rem;
  border-top-left-radius: 10rem;
  font-weight: bold;
  position: absolute;
  z-index: 4;
  top: 12rem;
}
.vh {
  font-size: 2rem;
  color: #00ffa7;
  background-color: rgba(0, 0, 0, 0.62);
  padding: 1rem;
  border-bottom-left-radius: 30rem;
  border-bottom-right-radius: 30rem;
  font-weight: bold;
  position: absolute;
  z-index: 4;
  left: 7.5rem;
  top: 12rem;
}
/* ez a pici segéd a képernyő (box) méretének a kiírására szolgál*/

/* ************** */
* {
  scrollbar-width: thin;
  scrollbar-color: #a0a0a0 transparent;
}



/* szöveg kijelölést tiltja */
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
	supported by Chrome, Opera and Firefox */
}

/* input mező nyilak rejtése */
    /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
    /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* VÉGE input mező nyilak rejtése */


::placeholder {
  color: rgba(56, 56, 56, 0.25);
  font-weight: bold;
  /*  background-color: #f0f0f0;*/
}
html {
  font-size: 15px;
/*  background: linear-gradient(to right, #696969, #b4c1bf, #b4c1bf, #696969);*/
	background: var(--primary-color);
}
body {
  /*      background-color: aliceblue;*/
  font-family: 'Oswald', sans-serif;
  width: 100%;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
  /*  max-width: 106.66rem;*/
  /*  margin: 0 auto;*/
  /*  padding: 0.5rem;*/
}
h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: bold;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: bold;
}
h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: bold;
}
h4 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: bold;
}
h5 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  letter-spacing: clamp(0.1rem, 1vw, 0.5rem);
  /*  padding-left: 1.25rem;*/
}
h6 {
  font-size: clamp(1.3rem, 3vw, 2.3rem);
}
p, li {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  padding-top: 0.3rem;
}
b {
  font-weight: bold;
}
ul {
  list-style-type: disc;
  list-style-position: inside;
  list-style-image: none;
  padding-left: 1.25rem;
}
ul ul {
  list-style-type: circle;
  list-style-position: inside;
  list-style-image: none;
  padding-left: 1.25rem;
}
ul ul ul {
  list-style-type: square;
  list-style-position: inside;
  list-style-image: none;
  padding-left: 1.25rem;
}
/*
ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1vw;
  font-weight: 800;
}
*/

/* Alapértelmezett stílusok a listaelemekhez */
ol ul {
/*    font-size: 16px; /* Az alapértelmezett betűméret beállítása */
    line-height: 1.5; /* A sorok közötti távolság szabályozása */
    margin-left: 1rem; /* A lista bal oldali behúzása */
    counter-reset: list-counter; /* A lista számlálója */
}

ol li {
    font-size: inherit; /* Az ol lista elemei öröklik az ol elem betűméretét */
    line-height: inherit; /* Az ol listaelemek öröklik a sorok közötti távolságot */
    counter-increment: list-counter; /* Minden listaelem növeli a számlálót */
}

/* A sima bulletek ne használják a számlálót! */
ul li {
    font-size: inherit;
    line-height: inherit;
    list-style-type: disc;
}
/* A számok színe és formázása */
ol li::before {
    content: counter(list-counter) ". "; /* A szám hozzáadása a listaelemhez */
/*    color: red;  A számok színe  */
    font-weight: bold; /* A számok kiemelése */
    margin-right: 10px; /* A szám és a szöveg közötti távolság */
}

ul li::before {
	content: none; /* Kikapcsolja a bullet számozást */
}

hr {
  /*  border: 1px solid red;*/
	/*  border: 1.5px solid;*/
  /*  border: 2px dashed #ceff00;*/
  /*  border: 1px dotted red;*/
  /*  border: 10px solid red;*/
  border-radius: 25px;
	display: block; /* Biztosítja, hogy blokk szintű elem maradjon */
	width: 100%; /* Szélesség 100% */
	border: 0; /* Eltávolítja a default vonalat */
	border-top: 1.5px solid; /* Hozzáadja a kívánt vonalat */

}
a {
  text-decoration: none;
  /*  color: #4848a5;*/
  color: rgb(0, 0, 0);
}

a:hover {
  text-decoration: none;
  /*  color: rgb(90, 98, 94);*/
  /*  font-weight: bold;*/
  /*  font-size: clamp(0.3rem, 2vw, 1.5rem);*/
}
input, select, textarea {
/*  border: none;*/
  /*  border-color: rgba(240, 248, 255, 0);*/
  /*  border-color: rgba(255, 255, 255, 0);*/
    border-radius: 25px;
  /*  font-size: clamp(1rem, 2vw, 1.2rem);*/
  /*  font-size: 1.2rem;*/
  font-size: 1rem;
  padding: 0.2rem;
  /*  font-family: 'Caveat', cursive;*/
  margin-top: 0.5rem;
  background-color: rgba(0, 255, 255, 0);
  border-bottom: 2px solid rgb(255, 255, 255);
  color: aliceblue;
}
input:focus, select:focus, textarea:focus, .list_name input:focus {
  outline: none;
  border: none;
  /*  background-color: #e6e6e6;*/
  background-color: #b7b7b7;
  color: black;
  /*  border-bottom: 2px solid grey;*/
  /*  border-radius: 25px;*/
}
button {
/*    all: unset; /* Ez eltávolítja az összes alapértelmezett stílust */
    background: none; /* Nincs háttérszín */
    color: inherit; /* Örökli a szülőelem szöveg színét */
    border: none; /* Nincs szegély */
    padding: 0; /* Nincs belső térköz */
    font: inherit; /* Örökli a szülő fontját */
}
.empty {
  margin-top: 1rem;
/*	background-color: brown;*/
}
.empty2 {
	height: 5rem;
/*	background-color: aqua;*/
}

/* TEXTAREA Flexibilis "txta" */
.txta {
  /*	background-color: #7e7e46;*/
  /*  width: 300px;*/
  width: min(100%, 300px);
  /*  max-width: 300px;*/
  min-height: 5px;
  /*  border-radius: 15px;*/
  /*  font-family: Arial, sans-serif;*/
  /*  font-size: 16px;*/
  overflow: hidden;
  line-height: 1;
}
summary {
  cursor: pointer;
  width: 40%;
  background-color: aliceblue;
  font-size: 1.3rem;
}
details p {
  color: aliceblue;
}
/* VÉGE TEXTAREA Flexibilis "txta" */

/* EGYEDI TEXTAREA SZERKESZTHETŐ */
.editor-container {
/*	background-color: yellow;*/
	display: flex;
	flex-direction: column;  /* Alapértelmezett vertikális elrendezés */
/*	width: 93%;*/
	max-width: min(100rem, 100%);
	margin: 0 auto;
	padding: 0.2rem;
/*    border: 1px solid #ccc;*/
	border-radius: 8px;
/* A padding és a border ne befolyásolja a szélességet */
	box-sizing: border-box;
	overflow-x: hidden; /* hogy biztos ne legyen scroll */
}
.toolbar {
    font-size: 20px;
		margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;  /* A gombok több sorra törhetnek, ha szükséges */
    gap: 10px;  /* A gombok közötti távolság */
}
button {
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
}
.editor {
/*	background-color: blue;*/
	border: 1px solid #000000;
	border-radius: 8px;
	min-height: 20rem;
	padding: 0.5rem;
	margin-bottom: 20px;
	font-family: Arial, sans-serif;
/*		color: #e0dea3;*/
	resize: none;  /* Lehetővé teszi, hogy a felhasználó ne méretezze túl a szerkesztőt */
/*	width: 100%;*/
	box-sizing: border-box;  /* A padding ne befolyásolja a szélességet */
/*		background-color: #a0a0a0;*/
/*	background-color: rgb(208, 208, 208);*/
}
textarea {
/*	background-color: aqua;*/
	width: 100%;
	height: 100px;
	padding: 10px;
	font-family: Arial, sans-serif;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: none;  /* Ne legyen reszponzív, maradjon fix méretű */
}
#colorPalette {
    display: flex;
    flex-wrap: wrap;  /* A színválasztó gombok több sorra törhetnek, ha szükséges */
    gap: 10px;
}
.colorOption { /* ezzel állítható az ikon méret */
    width: 40px; /* ezzel állítható az ikon méret */
    height: 30px; /* ezzel állítható az ikon méret */
    border: none;
		border-radius: 100%;
    cursor: pointer;
}
#textColor {
    margin-top: 20px;
}
.thumbnail {
	max-width: 200px;
	max-height: 200px;
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.image-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.image-overlay img {
	max-width: 90%;
	max-height: 90%;
	border: 5px solid white;
	border-radius: 8px;
	cursor: pointer;
}
/* VÉGE EGYEDI TEXTAREA SZERKESZTHETŐ */


/* INPUT MÉRETEK */
.wi_1 {
  width: 1rem;
}
.wi_2 {
  width: 2rem;
}
.wi_3 {
  width: 3rem;
}
.wi_4 {
  width: 4rem;
}
.wi_6 {
  width: 6rem;
}
.wi_8 {
  width: 8rem;
}
.wi_10 {
  width: 10rem;
}
.wi_11 {
  width: 11rem;
}
.wi_12 {
  width: 12rem;
}
.wi_14 {
  width: 14rem;
}
.wi_16 {
  width: 16rem;
}
.wi_18 {
  width: 18rem;
}
.wi_20 {
  width: 20rem;
}
.wi_22 {
  width: 22rem;
}
.wi_40 {
  width: 40rem;
}
/* VÉGE INPUT MÉRETEK */


/* MÉRETEK */ 
.min_wi_2 {
	min-width: 2rem;
}
.min_wi_4 {
	min-width: 4rem;
}
.min_wi_6 {
	min-width: 6rem;
}
.min_wi_8 {
	min-width: 8rem;
}
.min_wi_10 {
	min-width: 10rem;
}
.min_wi_12 {
	min-width: 12rem;
}
.min_wi_13 {
	min-width: 13rem;
}
.min_wi_14 {
	min-width: 14rem;
}

.max_wi_1 {
	max-width: 1rem;
}
.max_wi_2 {
	max-width: 2rem;
}
.max_wi_3 {
	max-width: 3rem;
}
.max_wi_4 {
	max-width: 4rem;
}
.max_wi_5 {
	max-width: 5rem;
}
.max_wi_6 {
	max-width: 6rem;
}
.max_wi_8 {
	max-width: 8rem;
}
.max_wi_9 {
	max-width: 9rem;
}
.max_wi_10 {
	max-width: 10rem;
}
.max_wi_12 {
	max-width: 12rem;
}
.max_wi_13 {
	min-width: 13rem;
}
.max_wi_16 {
	max-width: 16rem;
}

.font_size_1_3 {
	font-size: 1.3rem;
}
/* VÉGE MÉRETEK */

/* VERZIOHOZ kapcsolódó beállítások */
.verzioCenter {
  text-align: center;
}
.header_03Index_02 {
  /*    	background-color: #d0d0d0;*/
  /*background: linear-gradient(to right, #696969, #b4c1bf, #b4c1bf, #696969);*/
  /*	max-width: 1000px;*/
  max-width: 66.66rem;
  /*  max-width: 106.66rem;*/
  margin: 0 auto;
  /*    height: 5rem;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.header_first_row {
  /*	  max-width: 66.66rem;*/
  /*	background-color: aqua;*/
}
.verzioYearcost_button {
  /*	width: 8rem;*/
  /*    height: 100%;*/
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: 'Play', sans-serif;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border: 3px solid #ced2d8;
  border-radius: 10px;
  box-shadow: 10px 5px 15px 3px black;
}
.verzioModal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 4;
  /* Sit on top */
  padding-top: 5rem;
  /* Location of the box */
  /*    left: 40;*/
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /*  transition-duration: 1.2s;*/
}
.verzioModal_2 {
  background-color: rgba(0, 0, 0, 0.72);
  /*  max-width: 1300px;*/
  max-width: calc(100vw - 102px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: aliceblue;
  border-radius: 1rem;
}
.verzioYearcost_button:hover {
  transition: .59s ease-in-out;
  background-color: #ced2d8;
  color: #000000;
  border: 3px solid black;
  box-shadow: none;
}
.link {
  margin: 0 auto;
}
.link a {
  background-color: darkgreen;
  color: aliceblue;
  font-size: 1.5rem;
  padding: 5px;
  letter-spacing: 3px;
}
.link a:hover {
  background-color: aliceblue;
  color: darkgreen;
  transition: .59s ease-in-out;
}
.ver {
  /*  background-color: aqua;*/
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /*  color: dimgray;*/
  color: black;
  padding-right: 4rem;
  /*  font-size: 0.6rem;*/
  /*  width: 20rem;*/
  /*  height: 20px;*/
}
.ver p {
  font-size: 0.8rem;
}
/* VÉGE VERZIOHOZ kapcsolódó beállítások */

.cursor {
	cursor: pointer;
}	

.phpHide {
	color: rgba(0, 0, 0, 0);
  font-size: 0.1px;
}

.flexCenter {
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.fontW_900 {
	font-weight: 900;
}

.nagyBetu { /* nagy betű */
	text-transform: uppercase;
}

/* GOMBOK ÉS FELSŐ MENÜSOR */
.new_btn_basic {
/*  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);*/
  /*  margin: 10px;*/
  width: 8rem;
/*  height: 4.5rem;*/
  height: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
	font-size: 4rem;
  text-align: center;
	text-transform: uppercase;
  transition: 0.5s;
  background-size: 300% auto;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid;
/*	color: grey;*/
	  color: var(--buttonColor);
}
.new_btn_basic:hover {
  background-position: right center;
  /* change the direction of the change here 
/*  color: rgba(0, 212, 255, 1);*/
  color: white;
  text-decoration: none;
}
.btn_basic {
  /*  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);*/
  /*  margin: 10px;*/
  width: 8rem;
/*  height: 4.5rem;*/
  height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
	font-size: 1.5rem;
  text-align: center;
/*	text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
	cursor: pointer;
/*  color: grey;*/
  color: var(--buttonColor);
}
.btn_basic_function {
  /*  background-image: linear-gradient(to right, #2C3E50 0%, #4CA1AF 51%, #2C3E50 100%);*/
  /*  margin: 10px;*/
  width: 8rem;
  height: 2.5rem;
	padding: 5px 0px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
/*	font-size: 2rem;*/
  text-align: center;
/*	text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
	cursor: pointer;
/*  color: grey;*/
	color: var(--buttonColor);
}
.btn_basic_function_normal {
  height: 1rem;
	padding: 15px 10px 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
	font-size: 1rem;
  text-align: center;
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
	cursor: pointer;
/*  color: grey;*/
	color: var(--buttonColor);
}
.btn_basic:hover, .btn_basic_function:hover, .btn_basic_function_normal:hover {
  background-position: right center;
  /* change the direction of the change here */
/*    color: rgba(0, 212, 255, 1);*/
  color: #2408fc;
  text-decoration: none;
}
.b_grey {
/*  background-image: linear-gradient(to right, #b4b4b4 0%, #b4b4b4 25%,#ffffff 50%, #020500 100%);*/
  background-image: linear-gradient(to right, #D3E3FD 0%, #D3E3FD 25%,#ffffff 50%, #40a3eb 100%);
}
.pageName {
/*	background-color: blue;*/
	max-width: 20rem;
}
.filter {
/*	background-color: #919191;*/
}
.fiterResult {
	text-decoration: underline;
	text-decoration-color: blue;
	text-decoration-thickness: 3px; /* a vonal vastagsága */
  text-underline-offset: 4px; /* 10px-sel a szöveg alatt */
}
.header_00 {
/*	background-color: #09236a;*/
	color: aliceblue;
  top: 0;
  max-height: 11rem;
	overflow: auto;
  padding-left: 0.5rem;
/*  max-width: 106.66rem;*/
  display: flex;
  flex-direction: row;
	flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  z-index: 2;
}
.header_01 {
/*	background-color: #62b3d1;*/
  padding-left: 0.5rem;
	max-height: 5rem;
	overflow: auto;
  display: flex;
  flex-direction: row;
	flex-wrap: wrap;
  justify-content: flex-start;
  z-index: 2;
}
.btn_basic p, .btn_basic_function p, button p {
	font-size: 0.9rem;
}
/* VÉGE GOMBOK ÉS FELSŐ MENÜSOR */

/* EGYÉB GOMBOK */
.button {
/*	width: 6rem;*/
	width: 100%;
/*	background-color: aqua;*/
  height: 2rem;
	padding: 15px 10px 15px 10px;
	border-radius: 10px;
  display: flex;
  align-items: center;
	justify-content: center;
  border: 2px solid;
	cursor: pointer;
  color: grey;
	font-weight: 900;
	font-size: 1.3rem;
}
.button_2 {
	width: 11rem;
  height: 2rem;
	padding: 15px 10px 15px 10px;
	border-radius: 10px;
  display: flex;
  align-items: center;
	justify-content: center;
  border: 2px solid;
	cursor: pointer;
  color: grey;
	font-weight: 900;
	font-size: 1.3rem;
}
.button_3 {
	max-width: 5rem;
  height: 2rem;
	padding: 15px 10px 15px 10px;
	border-radius: 10px;
  display: flex;
  align-items: center;
	justify-content: center;
  border: 2px solid;
	cursor: pointer;
  color: grey;
	font-weight: 900;
	font-size: 1.2rem;
}
.button:hover, .button_2:hover, .button_3:hover {
  background-position: right center;
  /* change the direction of the change here */
  /*  color: rgba(0, 212, 255, 1);*/
  color: white;
  background-color: grey;
  text-decoration: none;
}
/* VÉGE EGYÉB GOMBOK */

/* SZÍNEK */
.kek {
	background-color: blue;
}
.piros {
	color: red;
}
.zold {
	color: #14ff00;
}
.kek_2 {
	color: blue;
}
.red_2 {
	color: red;
}
.zold_2 {
	color: darkgreen;
}
.kek_3 {
	color: darkblue;
}
/* VÉGE SZÍNEK */

/* RENDEZÉS */
.kozepre {
	margin: 0 auto;
}
/* VÉGE RENDEZÉS */

/* KERET */
.keret {
	width: 100%;
/*	background-color: aqua;*/
/*	padding: 15px 10px 15px 10px;*/
	padding: 5px;
	border-radius: 10px;
  display: flex;
	flex-direction: column;
  align-items: center;
	justify-content: center;
  border: 2px solid;
  color: grey;
	font-weight: 900;
	font-size: 1.3rem;
}
/* VÉGE KERET */

/* DINAMIKUS STICKY */
.fixHeader {
    background: var(--primary-color);
/*		background-color: yellowgreen;*/
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 3;
}
.main {
/*	background-color: #bbd7ef;*/
}
.tableTitle {
	background: var(--primary-color);
/*	background-color: black;*/
	padding: 0.6rem;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	position: relative; /* Az alapértelmezett viselkedés */
	z-index: 1; /* Cím előtt a táblázat */
	width: 100%; /* Biztosítja, hogy a cím rögzítve maradjon */
}
/* Fix fejléc (tableHead fix_row) */
.fix_row {
/*    background: var(--primary-color);*/
    background-color: #00b1ff;
    position: relative; /* Az alapértelmezett viselkedés */
		font-weight: 900;
    top: 0;
    width: 100%; /* Biztosítja, hogy a teljes szélességet lefedje */
    box-sizing: border-box; /* A padding és a border ne befolyásolja a szélességet */
    z-index: 2; /* A fejléc a cím felett */
}
.tableTitle.beige {
	background-color: beige;
}
/* VÉGE DINAMIKUS STICKY */

.main_boss {
/*	background-color: #bbd7ef;*/
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
}

.tableTitleMenu {
/*	background-color: yellow;*/
  display: flex;
	flex-wrap: wrap;
  width: 100%;
}
.tableTitleMenu_1 {
/*  background-color: chartreuse;*/
  cursor: pointer;
	flex-shrink: 0; /* Az első elem nem zsugorodik */
}
.tableTitleMenu_2 {
/*  background-color: lightblue;*/
  cursor: pointer;
  margin-left: auto; /* Az elem a maradék helyet kitöltve a közepére kerül */
  margin-right: auto; /* A margin-right segít, hogy középre igazítsuk */
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: bold;
}


.noButton {
  min-width: 3rem;
	max-width: 8rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Play', sans-serif;
  margin: 5px;
	font-size: 1.2rem;
  text-align: center;
	text-transform: uppercase;
  transition: 0.5s;
  background-size: 300% auto;
 	border-radius: 10px;
  border: 2px solid;
/*  color: grey;*/
	color: var(--buttonColor);
}

/* full_list.php található */
.edit_Task_header {
	display: flex;
	flex-direction: column;
	color: #5d737b;
	font-weight: 900;
	font-size: 1.1rem;
/*	background-color: burlywood;*/
}


/* tooltiphez kell */
.tooltip,
.tooltip_2,
.tooltip_3 {
  position: relative;
  display: inline-block;

  /*  background-color: aquamarine;*/
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 8.5rem;
  background-color: dimgray;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-family: 'Play', sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: -1px;
  /*  margin-left: -60px;*/
  opacity: 0;
  transition: opacity 1s;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip_2 .tooltiptext_2 {
  visibility: hidden;
  width: 8.5rem;
  background-color: dimgray;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-family: 'Play', sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 0;
  /*  margin-left: -60px;*/
  opacity: 0;
  transition: opacity 1s;
}
.tooltip_2 .tooltiptext_2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 75%;
  /*    left: 110%;*/
  margin-top: -15px;
  /*    margin-top: 5px;*/
  border-width: 8px;
  /*    border-bottom-width: 15px;*/
  border-style: solid;
  border-color: transparent transparent dimgray transparent;
  z-index: 3;
}
.tooltip_2:hover .tooltiptext_2 {
  visibility: visible;
  opacity: 1;
}
.tooltip_3 .tooltiptext_3 {
  visibility: hidden;
  width: 100%;
  /*    width: 15rem;*/
  background-color: dimgray;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-family: 'Play', sans-serif;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 2;
  top: 30px;
  /*    right: 0;*/
  left: 0;
  /*  margin-left: -60px;*/
  opacity: 0;
  transition: opacity 1s;
}
.tooltip_3 .tooltiptext_3::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  /*    left: 110%;*/
  margin-top: -15px;
  /*    margin-top: 5px;*/
  border-width: 8px;
  /*    border-bottom-width: 15px;*/
  border-style: solid;
  border-color: transparent transparent dimgray transparent;
}
.tooltip_3:hover .tooltiptext_3 {
  visibility: visible;
  opacity: 1;
}
/* END tooltiphez kell */

/* OSZLOPOK RENDEZÉSE */
.tableHeadData {
    cursor: pointer;
    position: relative;
}
.sort-arrow {
    font-size: 12px;
    margin-left: 5px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.sorted-asc .sort-arrow::after {
    content: '↑';
    opacity: 1;
}
.sorted-desc .sort-arrow::after {
    content: '↓';
    opacity: 1;
}
.tableHeadData.sorted-asc {
    color: green;
		font-weight: bold;
		background-color: skyblue;
}
.tableHeadData.sorted-desc {
    color: red;
		font-weight: bold;
		background-color: skyblue;
}
/* VÉGE OSZLOPOK RENDEZÉSE */


/* LOAD ICON Kezdete */
/* --- Spinner konténer --- */
.icon {
  display: flex;
  justify-content: center;
  margin-top: 1%;
}
/* Külső méretezhető keret
A kör sugara (vagyis a "spinner" animációban a körök pályájának sugara) jelenleg a következő részekből tevődik össze:
*/
.loadingio-spinner-spin-gcwf3o6rzre {
  width: 10vmin;
  height: 10vmin;
  position: relative;
}
/* Belső pozicionáló keret */
.ldio-huvj330hpfv {
  width: 100%;
  height: 100%;
  position: relative;
}
/* A piros körök */
.ldio-huvj330hpfv div > div {
  width: 1.5vmin;
  height: 1.5vmin;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  animation: ldio-huvj330hpfv 1.2s linear infinite;
}
/* Körök pozíciója elforgatva */
.ldio-huvj330hpfv > div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: 50% 50%;
}
/* Elforgatott pozíciók 8 irányban */
.ldio-huvj330hpfv > div:nth-child(1) {
  transform: rotate(0deg);
}
.ldio-huvj330hpfv > div:nth-child(2) {
  transform: rotate(45deg);
}
.ldio-huvj330hpfv > div:nth-child(3) {
  transform: rotate(90deg);
}
.ldio-huvj330hpfv > div:nth-child(4) {
  transform: rotate(135deg);
}
.ldio-huvj330hpfv > div:nth-child(5) {
  transform: rotate(180deg);
}
.ldio-huvj330hpfv > div:nth-child(6) {
  transform: rotate(225deg);
}
.ldio-huvj330hpfv > div:nth-child(7) {
  transform: rotate(270deg);
}
.ldio-huvj330hpfv > div:nth-child(8) {
  transform: rotate(315deg);
}
/* Animáció: eltűnés, méretcsökkenés */
@keyframes ldio-huvj330hpfv {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 0) scale(1);
  }
}
/* Egyedi animáció késleltetések */
.ldio-huvj330hpfv > div:nth-child(1) > div { animation-delay: -1.05s; }
.ldio-huvj330hpfv > div:nth-child(2) > div { animation-delay: -0.90s; }
.ldio-huvj330hpfv > div:nth-child(3) > div { animation-delay: -0.75s; }
.ldio-huvj330hpfv > div:nth-child(4) > div { animation-delay: -0.60s; }
.ldio-huvj330hpfv > div:nth-child(5) > div { animation-delay: -0.45s; }
.ldio-huvj330hpfv > div:nth-child(6) > div { animation-delay: -0.30s; }
.ldio-huvj330hpfv > div:nth-child(7) > div { animation-delay: -0.15s; }
.ldio-huvj330hpfv > div:nth-child(8) > div { animation-delay:  0s; }
/* LOAD ICON Vége */

/* login */
.login {
  /*	  background-color: aqua;*/
  display: flex;
  flex-direction: column;
  /*  width: 35rem;*/
  margin: 0 auto;
  align-items: center;
/*  color: aliceblue;*/
}
.login2 {
  /*	  background-color: #fa0000;*/
  /*  width: 20rem;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* VÉGE login */

/* LOGIN oldalon a hibás belépéshez köthető felugró ablak */
.message {
  z-index: 2;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: 'Play', sans-serif;
	padding: 0.5rem;
  text-align: center;
  margin: 0 auto;
  width: 24rem;
  height: 2.5rem;
  border: 3px solid #ced2d8;
  border-radius: 10px;
  box-shadow: 10px 5px 15px 3px black;
  /*  display: inline-block;*/
  position: relative;
	top: 0.5rem;
  animation: heartbeat 1s ease-out 2;
}
@keyframes heartbeat {
  0% {
    top: 0.5rem;
    left: 0px;
    background: #bc464b;
  }

  25% {
	top: 0.5rem;
    left: 30px;
    background: #4b4bce;
  }

  50% {
	top: 0.5rem;
    left: -30px;
    background: #bc464b;
  }

  75% {
	top: 0.5rem;
    left: 30px;
    background: #4b4bce;
  }

  100% {
	top: 0.5rem;
    left: 0px;
    background: #bc464b;
  }
}
.red {
	background-color: #bc464b;
	color: aliceblue;
}
/* VÉGE LOGIN oldalon a hibás belépéshez köthető felugró ablak */


/* tömeges kijelölés checkbox */
.tableRowData input[type="checkbox"],
.tableHeadData input[type="checkbox"] {
	width: 1.3rem;
	height: 1.3rem;
	margin: 0;
  padding: 0;
}
/* VÉGE tömeges kijelölés checkbox */

/* Modern check box */
/* Használata: a HTML-ben kell egy <label class="switch", ebbe az input checkbox, majd <span class="slider round"></span>, és a végén zárni </label>*/
.switch {
  position: relative;
  display: inline-block;
  float: right;
  /*  width: 30px;*/
  width: 46px;
  /*  height: 17px;*/
  height: 27px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  /*  height: 13px;*/
  height: 23px;
  /*  width: 13px;*/
  width: 23px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2e38b7;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2e38b7;
}
input:checked + .slider:before {
  /*
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
*/
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}
.slider.round:before {
  border-radius: 50%;
}
/* KIEGÉSZÍTÉS */
.empty10px {
	margin-top: 10px;
}
.switchBox {
/*	background-color: aqua;*/
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* VÉGE!!! Modern check box */


/* Új checkbox */
/* Használata: a HTML-ben 
/*
				<label class="toggle-select-all-wrapper">
					<span class="tooltip">
						<input type="checkbox" class="toggle-select-all" data-target="#select2_02">
						<span class="custom-checkbox"></span>
						<span class="tooltiptext">Összes</span>
					</span>
				</label>
Majd külön labelben a select, ahol id-nak meg kell adni a checkbox inputját
				<select class="select2" name="name_search_fulltask_subName[]" title="" id="select2_02" multiple="multiple">
*/
/* Elrejtjük a natív checkboxot, de megőrizzük a működését */
.toggle-select-all-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* Alap custom checkbox */
.toggle-select-all-wrapper .custom-checkbox {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #2e38b7;
  border-radius: 5px;
  background-color: white;
  vertical-align: middle;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s;
}
/* Pipát jelenítjük meg, ha az input be van pipálva */
.toggle-select-all-wrapper input[type="checkbox"]:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* Háttérszín változás bekapcsolva */
.toggle-select-all-wrapper input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #2e38b7;
}
/* VÉGE Új checkbox */

/* SVG  Gombok betöltése adatbázisból használjuk. ajax.js  */
.ikon {
  width: 1rem;       /* Méret beállítása */
  height: 1rem;      /* Fontos, hogy legyen magassága is */
  fill: var(--buttonColor);
  transition: 0.3s;  /* Hogy szép finom legyen az átmenet */
}
.ikon_text_edit {
  width: 2rem;       /* Méret beállítása */
  height: 2rem;      /* Fontos, hogy legyen magassága is */
  fill: currentColor;
}
.ikon_text_edit_xs {
  width: 1.2rem;       /* Méret beállítása */
  height: 1.2rem;      /* Fontos, hogy legyen magassága is */
  fill: currentColor;
}
.ikon_menu {
  width: 50%;
  height: 50%;
  fill: currentColor;
  transition: 0.3s;  /* Hogy szép finom legyen az átmenet */
}
.ikon:hover, .ikon_menu:hover {
  fill: blue;         /* HOVER SZÍN: piros */
  transform: scale(1.2); /* Kicsit nagyítunk is rajta, ha ráviszed az egeret */
}
/* VÉGE SVG  Gombok betöltése adatbázisból használjuk. ajax.js  */


/* Hamburger menü */
/* --- 1. ALAPÁLLAPOT (ASZTALI GÉP / DESKTOP) --- */
/* A menüsor legyen egymás mellett, látható */
.menu-lista {
  display: flex;
/*  gap: 20px;*/
}
.hamburger-btn {
  display: none;
	position: fixed;
	top: 0;
	z-index: 4;
	color:  var(--buttonColor);
}
/* Hamburger menü VÉGE */





/* az oldal alján van, hogy mobilon a felugró billentyűzetet felfogja */
.bottom {
/*  background-color: aliceblue;*/
/*  width: 100%;*/
/*  height: 30rem;*/
  height: calc(100vh - 37rem);
}

/* SELECT2 felugró ablak módosítása  */
.cdropdown {
/*  background-color: rgba(25, 23, 23, 0.94) !important;*/
/*  color: #ffffff !important;*/
  position: fixed !important;
  z-index: 3 !important;
/*  top: 10% !important;*/
/*    padding-top: 5rem;*/
  width: 80% !important;
  left: 10% !important;
/*  height: 10rem !important;*/
/*  overflow: auto !important;*/
}

/* SELECT MULTIPLE egyedi megjelenítéshez kell */
select[multiple] {
  background-color: rgba(0, 255, 255, 0);
  color: aliceblue;
  width: 100%;
  padding: 0.5rem;
  overflow-x: scroll;
  overflow-y: scroll;
  /*	scrollbar-width: none;*/
  box-shadow: 0 2px 5px 1px dimgray;
}
select[multiple]:focus {
  background-color: rgba(0, 255, 255, 0);
  border-bottom: 2px solid rgba(128, 128, 128, 0.06);
  border-radius: 0;
}
/* VÉGE SELECT MULTIPLE egyedi megjelenítéshez kell */


/* ezekkel állítjuk az input mező validálását */
input:invalid,
select:invalid {
  /*  box-shadow: 0 2px 5px 1px red;*/
  /*  box-shadow: 0 2px 1px 0 red;*/
  border-bottom: 2px solid red;
  /*    background-color: red;*/
}
input:focus:invalid,
select:focus:invalid {
  box-shadow: none;
}
input:valid,
select:valid {
  /*  box-shadow: 0 2px 5px 1px #179857;*/
}
/* VÉGE ezekkel állítjuk az input mező validálását */

/* Egyedi DIV tábla */
.fullTable {
/*	background-color: rgb(245, 18, 18);*/
	border: 1x solid #000000;
/*	width: 90%;*/
	margin: 0 auto;
/*	padding: 10px;*/
}
.fullTable_2 {
/*	background-color: rgb(245, 18, 18);*/
	width: 70vw;
	margin: 0 auto;
/*	padding: 10px;*/
}
.tableHead, .tableRow, .tableSum {
/*	background-color: aquamarine;*/
/*	padding: 10px;*/
/*	width: 50%;*/
  display: flex;
  flex-direction: row;
/*  flex-wrap: wrap;*/
/*  justify-content: space-around;*/	
}
.tableHeadData, .tableRowData, .tableSumData {
  display: flex;
  align-items: center;     /* vertikálisan középre */
	border: 0px solid #000;
/*	Ez biztosítja, hogy minden elem kitöltse az elérhető helyet */
  flex-grow: 1;  
	flex: 1 0 0;
/* Megakadályozza, hogy a szöveg törjön */
/*  white-space: nowrap;*/
/* Ha a szöveg túl hosszú, elrejtse, és három pontot használjon */
  text-overflow: ellipsis; 
/* ❗ nélkülözhetetlen az ellipsis-hez flexnél */
	min-width: 0;            
	/* Elrejti a túlnyúló szöveget */
  overflow: hidden; 
	/* Opcióként hozzáadhatunk némi paddingot a kinézet javítása érdekében */
  padding: 0.5rem 0.2rem 0.5rem 0.2rem;
/*	  line-height: 2rem;   ez teszi középre függőlegesen */
}
.tableHeadDataWrap {
	  white-space: wrap;
}
/* Megoldás: tedd a szöveget span-be és arra az ellipsis-t. Azért kell, hogy az ellipsis megmaradjon  <span class="rowText"><?php echo $row1['task_name'];?></span> */
.rowText {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
	line-height: 1.4; /* vagy normál érték, pl. 1.4 vagy px-ben, pl. 20px */
}
/* Az első elem bal oldali szegélye */
.tableHeadData:first-child, .tableRowData:first-child, .tableSumData:first-child {
/*  border-left: 1px solid #000; */
}
/* Az utolsó elem jobb oldali szegélye */
.tableHeadData:last-child, .tableRowData:last-child, .tableSumData:last-child {
/*  border-right: 1px solid #000; */
}
/* Az első sor felső szegélye */
.tableHead > .tableHeadData {
  border-top: 3px solid #454545; 
  border-bottom: 2px solid #454545; 
}
.tableBody{
	border-bottom: 1px solid #000;
}
.tableRow {
	background-color: #ded6cb;
}
/* A következő sorok felső szegélye */
.tableRow > .tableRowData {
  border-top: 1px solid #000;
	font-size: 1.15rem;
}
/* Az első sor felső szegélye */
.tableRow:first-child > .tableRowData {
  border-top: 1px solid #000; 
}
/* A szomszédos sorok közötti keretek: */
.tableRow:not(:first-child) > .tableRowData {
/* Az egyes sorok között egyenletes keret legyen */
  border-top: 1px solid #000; 
}
/* A footer sor felső szegélye */
.tableSum > .tableSumData {
  border-top: 1px solid #000; 
}
.tableRowData {
/*	background-color: cornflowerblue;*/
}
.tableSumData {
	background-color: #cc7486;
}
.noborder {
	border: none;
}
.tableRow:hover {
  background-color: #5e90c3;
}
.tableRow.selected {
    background-color: #e1e0fa; /* világoskék vagy amit szeretnél */
}
.wrap_column {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.pro_count {
	color: blue;
	font-size: 0.9rem;
}
/* VÉGE Egyedi DIV tábla */


/* SZŰRÉSHEZ megjelenítés */
.active-filters {
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    font-size: 14px;
}
.active-filters ul {
    margin: 0;
    padding-left: 20px;
}
.active-filters li {
    margin-bottom: 4px;
}
ul.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Ez ad térközt a li-k között */
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 10px 0;
}
ul.active-filters-list li {
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 1em; /* Ez segít, ha a gombóc túl közel van */
}
/* VÉGE SZŰRÉSHEZ megjelenítés */


/* SELECT2 MULTIPLE módosítás */
/* ALAP select2 multiple mező testreszabása */
.select2-container--default .select2-selection--multiple {
    background-color: rgba(255, 0, 0, 0) !important;
/*    border: 2px solid red !important;*/
		border: none !important;
/*    border-radius: 8px !important;*/
/*    min-height: 40px;*/
/*    padding: 4px;*/
}
/* Tag-ek (kiválasztott elemek) */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgba(0, 123, 255, 0) !important;
    color: #484545 !important;
    border: none !important;
    padding: 3px 3px 3px 18px;
/*    border-radius: 4px;*/
}
/* És ez a vonal az .select2-selection__choice__remove elem ::before vagy border-right stílusa miatt jelenik meg. */
.select2-selection__choice__remove {
/*    border: none !important;*/
		border: 2px solid grey !important;
		line-height: 1 !important;
		padding: 0 4px !important;
		height: auto !important;
		display: inline-block !important;
		align-self: center !important;
}
/* X ikon (eltávolítás) */
/*
.select2-container--default .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 4px;
}
*/
/* VÉGE SELECT2 MULTIPLE módosítás */





/* === MEDIA QUERY-k !!! */
@media (max-width: 768px), (max-height: 530px) {
	/* HAMBURGER MENÜ */
	/* --- 2. MOBIL NÉZET (Itt a válasz a kérdésedre) --- */
	/* "Ha a képernyő maximum 768px széles (tehát ennél kisebb)..." */
  .menu-lista {
    display: flex;
    flex-direction: row;
/*    background: #f4f4f4;*/
/*    padding: 10px;*/
    /* KIINDULÁSI ÁLLAPOT – ÖSSZECSUKVA */
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
/*		overflow: hidden;*/
/*		overflow: auto;*/
    max-height: 0;         /* <<<<< ÖSSZECSUKVA = 0 MAGASSÁG */
    /* FINOM animáció MINDKÉT IRÁNYBA */
    transition: transform 0.35s ease, opacity 0.35s ease;

    /* Animáció közben is klikkelhető >>>>
       pointer-events probléma nélkül */
  }
  /* NYITOTT ÁLLAPOT */
  .menu-lista.active {
    transform: scaleY(1);
		max-height: 500px;
    opacity: 1;
  }
  .hamburger-btn {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
	/* VÉGE HAMBURGER MENÜ */
	
	/* ADMIN / STÁTUSZOK kezelése MENÜ */
	.fullTable_2 {
		width: 90vw;
	}
}

@media (max-width: 768px) {
	/* Oszlopok elrejtése */
	.hide_01 {
		display: none;
	}	
}