/* Kontener logowania/rejestracji */
.login-container {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  text-align: center;
  margin: 50px auto;
}

/* Nagłówki */
.login-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 400;
  /* Ciemny kolor tekstu */
}

/* Formularze */
.login-container form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.login-container label {
  text-align: left;
  margin-bottom: 5px;
  font-size: 14px;
  color: #888;
  /* Nieco jaśniejszy odcień szarości */
}

.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"],
.login-container .inpt {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  /* Subtelna ramka */
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.login-container input[type="text"]:focus,
.login-container input[type="email"]:focus,
.login-container input[type="password"]:focus {
  border-color: #d84044;
  /* Czerwony kolor przy fokusie */
  outline: none;
  box-shadow: 0 0 5px rgba(216, 64, 68, 0.5);
}

/* Przycisk */
.login-container button {
  padding: 10px;
  background-color: #d84044;
  /* Intensywny czerwony kolor */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover,
.login-container input.abtn:hover {
  background-color: #be3a3e;
  color: #fff !important;
  /* Ciemniejszy czerwony przy najechaniu */
}

/* Tekst pod formularzem */
.login-container p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  /* Nieco jaśniejszy odcień szarości */
}

.login-container a {
  color: #d84044;
  /* Czerwony kolor linków */
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
  /* Podkreślenie przy najechaniu */
}

/* Stylizacja logo */
.logo {
  max-width: 150px;
  /* Ustaw maksymalną szerokość logo */
  height: auto;
  /* Automatyczne skalowanie wysokości */
  margin: 0 auto 20px auto;
  /* Wyśrodkowanie i odstęp od formularza */
  display: block;
}

/* Stylizacja komunikatu błędu */
.error-message {
  color: #d84044 !important;
  /* Czerwony kolor */
  font-size: 14px;
  margin-top: -10px !important;
  /* Zmniejszenie odstępu od pola */
  margin-bottom: 10px;
  /* Odstęp od kolejnych elementów */
  text-align: left;
}

.success-message {
  color: #d84044 !important;
  /* Czerwony kolor */
  font-size: 16px;
}


.admin-hdr-1,
.sidebar-center-home-menu .menu-hdr {
  background: #777;
  height: 45px;
  padding: 10px 20px;
}

.admin-hdr-2,
.sidebar-center-home-menu .menu-body a {
  background: #F8F8F8;
  height: 45px;
  border: 1px solid #e2e2e2;
  border-top: none;
}

.admin-hdr-2:hover,
.sidebar-center-home-menu .menu-body a:hover {
  background: #e2e2e2;
}

.admin-hdr-2 a,
.sidebar-center-home-menu .menu-body a {
  text-decoration: none;
  width: 100%;
  display: block;
  height: 100%;
  padding: 8px 30px;
}

#hiddenTable {
  display: none;
  overflow: hidden;
  transition: max-height 2.0s ease-in-out;
  max-height: 0;
}

#hiddenTable.show {
  display: block;
  max-height: 1000px;
  /* Wystarczająco duża wartość */
}

.reset-style {
  all: unset;
  text-decoration: underline;
}

.reset-style:hover {
  background: none;

}

.button-show-info {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 90%;
  color: #888;
}
.button-show-info:hover {
  color: red;
}

.hiddenText {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-out;
}
.hiddenText div {
  margin: 10px 30px;
  color: #d84044;
}



/* kontener z przyciskami */
div[style*="display: flex"][style*="justify-content: flex-end"] {
  max-width: calc(100vw - 400px);
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  overflow: hidden;
}

/* same przyciski */
div[style*="display: flex"][style*="justify-content: flex-end"] a.abtn {
  flex-shrink: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 8px;
}

div.moduly-info {
  margin: 0 30px;
  font-size:14px;
  line-height: 25px;
}
div.moduly-info p {
  margin: 10px 0 0 30px;
}



/* html {
  scroll-behavior: smooth;
} */

.menu-info {
	/* position: sticky; */
	top: 0;
	background: #f9f9f9;
	border: 1px solid #ccc;
	padding: 10px;
	z-index: 999;
	margin-bottom: 15px;
	font-family: sans-serif;
}
.menu-info a {
	margin: 0 12px;
	text-decoration: none;
	color: #000;
	font-weight: bold;
}
.menu-info a:hover {
  color: #d84044;
}
.moduly-info h3 {
  padding-top: 10px;
  margin: 0px;
}


/* .menu-info a.active {
  font-weight: bold;
  color: #d84044;
} */

/* .moduly-scroll {
	height: 2000px;
	overflow: visible;
  border-bottom: 1px solid #d84044;
  position: relative;
} */


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: block;
  background-color: #2F2F2F;
  color: white;
  padding: 12px 16px;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
  text-decoration: none;
}
#scrollTopBtn:hover {
	background-color: #d84044;
}

.info-tb-title {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}
.info-tb-title .title {
  margin: 0;
  background:#555;
  border-bottom: 1px solid #777;
  padding: 10px;
}

.info-tb-title .sql-list {
  margin: 0;
}

