/*!
 * @author Tomasz Wyrzykowski
 * @company BT CBA™ 2044 ©
 * @nr kadr. 20900718
 * --------------------------------------------------
 * All rights reserved! | Wszystkie Prawa Zastrzeżone!
 *
 */
/* Podwójne kliknięcie */
.dblClick {
    background-color: rgb(167, 196, 236) !important;
    color: black;
}
.big-checkbox {
    width: 18px; height: 18px;
}

/*! Pole id=haslo1 */
.password-container {
  position: relative;
  display: flex;
  align-items: center;
}
.toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}
.toggle-password:focus {
  outline: none;
}

/*! Pole id=haslo2 */
.password-container_2 {
  position: relative;
  display: flex;
  align-items: center;
}
.toggle-password_2 {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}
.toggle-password_2:focus {
  outline: none;
}

.error {
  color: red;
  font-size: 14px;
  display: none;
}
.success {
  color: green;
  font-size: 14px;
}

 /* Styl dla wiersza tabeli */
tr.red-strikethrough {
  color: red; /* Czerwony kolor tekstu */
  text-decoration: line-through; /* Przekreślenie tekstu */
}