body {
  /* background: linear-gradient(90deg, rgba(0,0,50,1) 0%, rgba(0,0,75,1) 50%, rgba(0,0,100,1) 100%); */
  background: rgba(255,255,255,1);
  font-family: 'Montserrat', sans-serif;
  background-size: cover;
  background-position: center;
}

.container {
  height: 80vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.containerMain {
  height: 80vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
}

form {
  height: 320px;
  padding: 3em;
  border-radius: 20px;
  background: rgba(0,0,0,0.03);
  backdrop-filter: blur(10px);
  box-shadow: 20px 20px 40px -6px rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 7em;
}

.welcome {
  font-weight: bold;
  color: #000;
  opacity: 0.7;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

input {
  background: transparent;
  width: 220px;
  font-size: 0.9em;
  color: #000;
  padding: 1em;
  margin-bottom: 2em;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 30px rgba(0,0,0,0.2);
}

input[type="checkbox"]{
  width:20px
}

input::placeholder {
  color: #000;
  font-weight: 400;
}

input[type="password"]:focus {
  box-shadow: 4px 4px 30px rgba(0,0,0,0.2);
  outline: none;
}

input[type="submit"] {
  margin-top: 10px;
  width: 150px;
  font-size: 1rem;
  cursor: pointer;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
}

a:hover {
  color: orange;
}

header {
  position: relative;
  padding: 0 2rem;
}

.navbar {
  width: 100%;
  height: 120px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .log a {
  font-size:  1.5rem;
  font-weight: bold;
}

.navbar .links {
  display: flex;
  gap: 2rem;
}

.navbar .toggle_btn {
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_btn {
  background-color: rgb(250, 20, 20);
  color: #FFF;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2 ease;
}

.action_btn:hover {
  scale: 1.05;
  color: #000;
}

.action_btn:active {
  scale: 0.95;
}

.dropdown_menu {
  display: none;
  position: absolute;
  height: 0;
  right: 2rem;
  top: 60px;
  width: 300px;
  background: rgba(0,0,0,0.05);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
  z-index: 99;
}

.dropdown_menu.open {
  height: 300px;
}

.dropdown_menu li {
  padding: 0.7rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu a {
  color: rgba(0,0,50,1);
}

.dropdown_menu li p {
  font-size: 1rem;
  padding-top: 10px;
  color: rgba(0,0,50,1);
}

.dropdown_menu .action_btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }

  .navbar .toggle_btn {
    display: block;
  }
  .dropdown_menu {
    display: block;
  }

}

.logo {
  width: 125px;
  height: 100px;
}
.logodiv {
  margin-top: 10px;
}

.selectFile {
  font-weight: bold;
  font-size: 16px;
  color: grey;
  padding: 0.5em;
  border: thin solid grey;
  border-radius: 3px;
}

.file{
  display:none;
}

p {
  font-size: 16px;
  color: #000;
}

.styled-table {
  border-collapse: collapse;
  margin: 25px 25px;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
  text-align: center;
  background-color: #009879;
  color: #ffffff;

}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(odd) {
  background-color: #93efff;
}
.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.styled-table tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}

.pagging{
  padding: 25px 25px;
  display: flex;
  justify-content: space-between;
}

.paggingBtn{
  padding: 0;
  margin: 0;
  width: 80px;
  height: 60px;
  background-color: rgba(243, 243,243, 0.9) ;
  border: 0px;
  border-radius: 5;
  color: #222222;
  text-align: center;
  cursor: pointer;
}


.reader button{
  width: 200px;
  height: 60px;
}

.container-scan {
  height: 70vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.html5-qrcode-element{
  height: 40px;
} 

.tableActionBtn{
  padding: 0;
  margin: 0;
  width: 80px;
  height: 35px;
  background-color: rgba(243, 243,243, 0.9) ;
  border: 0px;
  border-radius: 5;
  color: #222222;
  text-align: center;
  cursor: pointer;
}

.containerCreate{
  display: none;
  height: 80vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  z-index: 98;
}

.createUserForm {
  height: 400px;
  padding: 3em;
  border-radius: 20px;
  background: rgba(0,0,0,0.03);
  backdrop-filter: blur(10px);
  box-shadow: 20px 20px 40px -6px rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 7em;
}

.createUserinput {
  background: transparent;
  width: 220px;
  font-size: 0.9em;
  color: #000;
  padding: 1em;
  margin-bottom: 2em;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 30px rgba(0,0,0,0.2);
}
.createUserinputSelect {
  background: transparent;
  width: 250px;
  font-size: 1em;
  color: #000;
  padding: 1em;
  margin-bottom: 2em;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 30px rgba(0,0,0,0.2);
}
.containerDel{
  display: none;
  height: 80vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  z-index: 98;
}
.containerEdit{
  display: none;
  height: 80vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  z-index: 98;
}
.smallPasswordNotic{
  font-size: 13px;
  color: hsl(0, 100%, 50%);
}
.editUserPassword {
  background: transparent;
  width: 220px;
  font-size: 0.9em;
  color: #000;
  padding: 1em;
  margin-bottom: 0.3em;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 30px rgba(0,0,0,0.2);
}