@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  font-family: "IBM Plex Mono", monospace;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* input::-webkit-outer-spin-button, * input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
* button,
* input[type=submit] {
  border-top: 3px solid #eee;
  border-left: 3px solid #eee;
  border-bottom: 3px solid #777;
  border-right: 3px solid #777;
}

body {
  min-width: 650px;
  background-color: #fff;
}

.top-header {
  position: relative;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-header .top-header-top {
  flex: 1;
}
.top-header .top-header-top .top-header-title {
  padding-top: 20px;
  padding-left: 20px;
  font-weight: 500;
  font-size: 17px;
}
.top-header .top-header-middle {
  position: relative;
  flex: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 100px;
}
.top-header .top-header-middle .form-tab-btn,
.top-header .top-header-middle .table-tab-btn {
  color: #000;
  background-color: #ccc;
  height: 40px;
  width: 120px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.top-header .top-header-middle .form-tab-btn.active,
.top-header .top-header-middle .table-tab-btn.active {
  background-color: #000000;
  color: #fff;
}
.top-header .top-header-middle .form-tab-btn:hover,
.top-header .top-header-middle .table-tab-btn:hover {
  color: #fff;
  background-color: #424242;
}
.top-header .top-header-middle .form-tab-btn:active,
.top-header .top-header-middle .table-tab-btn:active {
  transform: scale(0.93);
  color: #fff;
  background-color: #000000;
}
.top-header .top-header-middle:before {
  content: "24";
  font-size: 16px;
  font-weight: 700;
  color: #000;
  position: absolute;
  top: 25%;
  left: 20px;
  cursor: default;
}
.top-header .top-header-middle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  height: 70%;
  border-left: 2px solid #000;
  cursor: default;
}
.top-header .top-header-middle .deleting-user-text {
  display: none;
  font-weight: 700;
  font-size: 14px;
  color: #ce9000;
}
.top-header .top-header-middle .deleting-user-text .first-dot {
  animation: firstDot 1s infinite reverse;
}
.top-header .top-header-middle .deleting-user-text .second-dot {
  animation: secondDot 1s infinite reverse;
}
.top-header .top-header-bottom {
  flex: 1;
  padding-left: 50px;
  font-weight: 600;
  font-size: 14px;
}

@keyframes firstDot {
  0% {
    opacity: 1;
  }
  79% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes secondDot {
  0% {
    opacity: 1;
  }
  19% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#main {
  padding-bottom: 20px;
  height: calc(100vh - 150px);
}
#main #table-section {
  display: none;
}
#main #table-section.active {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#main #table-section.active .table-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  margin: 0 auto;
  width: 97%;
  height: 90px;
  flex-shrink: 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 10px 10px;
}
#main #table-section.active .table-nav .table-nav-title {
  width: 80px;
  font-size: 12px;
  font-weight: 700;
}
#main #table-section.active .table-nav .filter-inputs-wrapper {
  min-width: 1000px;
  display: flex;
  gap: 10px;
}
#main #table-section.active .table-nav .filter-inputs-wrapper .filter-input-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2px;
  width: 50%;
}
#main #table-section.active .table-nav .filter-inputs-wrapper .filter-input-container label {
  font-size: 13px;
}
#main #table-section.active .table-nav .filter-inputs-wrapper .filter-input-container input {
  color: #111;
  font-size: 12px;
  font-weight: 500;
  height: 24px;
  width: 100%;
  border-top: 3px solid #777;
  border-left: 3px solid #777;
  border-bottom: 3px solid #ccc;
  border-right: 3px solid #ccc;
  outline: none;
  padding: 0 5px;
}
#main #table-section.active .table-nav .filter-inputs-wrapper .filter-input-container input:focus {
  background-color: #eee;
  border-top: 3px solid #333;
  border-left: 3px solid #333;
  border-bottom: 3px solid #888;
  border-right: 3px solid #888;
}
#main #table-section.active .undo-btn-container {
  visibility: hidden;
  padding: 15px 0 0 50px;
  display: flex;
  align-items: center;
  gap: 15px;
}
#main #table-section.active .undo-btn-container .undo-btn {
  background-color: #000;
  font-weight: 600;
  color: #fff;
  width: 50px;
  height: 25px;
  cursor: pointer;
}
#main #table-section.active .undo-btn-container .undo-btn:active {
  transform: scale(0.93);
}
#main #table-section.active .undo-btn-container .undo-counter-container {
  display: flex;
  gap: 2px;
  padding: 2px;
  width: 80px;
  height: 20px;
  border: 2px solid #000;
}
#main #table-section.active .undo-btn-container .undo-counter-container .undo-counter-bar {
  flex: 1;
  background: #1740c7;
}
#main #table-section.active .table-main {
  overflow: auto;
  padding: 0 50px;
}
#main #table-section.active .table-main .popup-container {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #ddd;
  border-top: 3px solid #bbb;
  border-left: 3px solid #bbb;
  border-bottom: 3px solid #111;
  border-right: 3px solid #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 250px;
  width: 420px;
}
#main #table-section.active .table-main .popup-container .popup-title {
  background: #051f91;
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: #eee;
}
#main #table-section.active .table-main .popup-container .text-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
}
#main #table-section.active .table-main .popup-container .text-container .popup-warning-icon {
  background-color: #e10000;
  flex: 0 0 auto;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  border: 10px solid #9c0909;
}
#main #table-section.active .table-main .popup-container .text-container .popup-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
#main #table-section.active .table-main .popup-container .text-container .popup-text .yes-text {
  color: #e10000;
}
#main #table-section.active .table-main .popup-container .popup-btn-container {
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
#main #table-section.active .table-main .popup-container .popup-btn-container button {
  height: 32px;
  width: 60px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background-color: #ddd;
  cursor: pointer;
}
#main #table-section.active .table-main .popup-container .popup-btn-container button:active {
  transform: scale(0.97);
}
#main #table-section.active .table-main .popup-container .popup-btn-container .popup-confirm-btn {
  color: #e10000;
}
#main #table-section.active .table-main #users-table {
  width: 100%;
  border-collapse: collapse;
}
#main #table-section.active .table-main #users-table .del-row-btn,
#main #table-section.active .table-main #users-table .edit-row-btn {
  font-weight: 600;
  background: none;
  padding: 1px 5px;
  cursor: pointer;
}
#main #table-section.active .table-main #users-table .del-row-btn:active,
#main #table-section.active .table-main #users-table .edit-row-btn:active {
  transform: scale(0.93);
}
#main #table-section.active .table-main #users-table .del-row-btn:disabled,
#main #table-section.active .table-main #users-table .edit-row-btn:disabled {
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
}
#main #table-section.active .table-main #users-table .del-row-btn {
  background-color: #e10000;
  color: #fff;
}
#main #table-section.active .table-main #users-table tr {
  border-top: 1px solid #ddd;
  height: 50px;
}
#main #table-section.active .table-main #users-table thead tr {
  border: none;
}
#main #table-section.active .table-main #users-table thead tr th {
  color: #000;
  padding: 0 7px;
  text-align: start;
  font-weight: 600;
}
#main #table-section.active .table-main #users-table thead tr th:first-child {
  width: 135px;
  min-width: 135px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-child(2) {
  width: 200px;
  min-width: 200px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-child(3) {
  width: 120px;
  min-width: 120px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-child(4) {
  width: 200px;
  min-width: 200px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-child(5) {
  width: 100px;
  min-width: 100px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-child(6) {
  width: 130px;
  min-width: 130px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-child(7) {
  width: 130px;
  max-width: 130px;
}
#main #table-section.active .table-main #users-table thead tr th:nth-last-child(-n+2) {
  width: 115px;
  min-width: 115px;
}
#main #table-section.active .table-main #users-table tbody tr:hover {
  background-color: #e8e8e8;
}
#main #table-section.active .table-main #users-table td {
  padding: 0 7px;
  font-weight: 500;
  font-size: 14px;
  height: 40px;
  color: #333;
}
#main #table-section.active .table-main #users-table td .edit-input {
  width: 90%;
  padding: 0 7px;
  border-top: 3px solid #777;
  border-left: 3px solid #777;
  border-bottom: 3px solid #ccc;
  border-right: 3px solid #ccc;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  height: 30px;
}
#main #table-section.active .table-main #users-table td .edit-input:focus {
  outline: none;
  border-top: 3px solid #333;
  border-left: 3px solid #333;
  border-bottom: 3px solid #888;
  border-right: 3px solid #888;
  background-color: #eee;
}
#main #form-section {
  display: none;
}
#main #form-section.active {
  height: 100%;
  display: flex;
  justify-content: center;
}
#main #form-section.active .user-form-error {
  visibility: hidden;
  text-align: center;
  margin-bottom: 20px;
  color: #e10000;
  font-size: 18px;
  font-weight: 600;
}
#main #form-section.active #create-user-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 3px solid #555;
  background-color: #aaa;
  padding: 38px;
}
#main #form-section.active #create-user-form .input-container {
  display: flex;
  gap: 20px;
}
#main #form-section.active #create-user-form .input-container .left,
#main #form-section.active #create-user-form .input-container .right {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#main #form-section.active #create-user-form .input-container label {
  font-weight: 600;
  font-size: 18px;
}
#main #form-section.active #create-user-form .input-container input:not([type=submit]) {
  font-size: 14px;
  font-weight: 500;
  height: 35px;
  padding: 0 5px;
  border-top: 3px solid #777;
  border-left: 3px solid #777;
  border-bottom: 3px solid #ccc;
  border-right: 3px solid #ccc;
}
#main #form-section.active #create-user-form .input-container input:not([type=submit]):focus {
  outline: none;
  border-top: 3px solid #333;
  border-left: 3px solid #333;
  border-bottom: 3px solid #888;
  border-right: 3px solid #888;
  background-color: #ddd;
}
#main #form-section.active #create-user-form .input-container input:not([type=submit]):disabled {
  background-color: #aaa;
}
#main #form-section.active #create-user-form .submit-form-btn {
  align-self: center;
  width: 170px;
  height: 45px;
  font-size: 18px;
  font-weight: 600;
  background: #111;
  color: #fff;
  cursor: pointer;
}
#main #form-section.active #create-user-form .submit-form-btn:active {
  transform: scale(0.97);
}
#main #form-section.active #create-user-form .submit-form-btn.inactive {
  background-color: #aaa;
  cursor: default;
}
#main #form-section.active #create-user-form .submit-form-btn.inactive:active {
  transform: none;
}

@media screen and (max-width: 1055px) {
  #main #table-section.active .table-nav {
    height: 100px;
  }
}

/*# sourceMappingURL=style.css.map */
