body {
  background: #f3f3f3;
  max-width: 1400px;
}

.messages {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.zero_and_one {
  background: white;
  border: solid 1px rgb(138, 223, 138);
  width: -moz-max-content;
  width: max-content;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
.zero_and_one span {
  display: flex;
  justify-content: space-around;
  color: white;
  font-weight: bold;
}
.zero_and_one span .error {
  color: darkred;
}
.zero_and_one span .success {
  color: darkgreen;
}

.message-container {
  margin-top: 30px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: none;
}

.success-message {
  background-color: #dff0d8;
  color: #4F8A10;
  border: 1px solid #4F8A10;
}

.error-message {
  background-color: #f2dede;
  color: #a94442;
  border: 1px solid #a94442;
}

.go_back a {
  padding: 20px 40px 20px 40px;
  background: rgb(138, 223, 138);
  border: solid 1px rgb(138, 223, 138);
  width: -moz-max-content;
  width: max-content;
  border-radius: 30px;
  margin-left: 20px;
  text-decoration: none;
  font-size: larger;
  color: rgba(0, 0, 0, 0.938);
}

.go_back:hover a {
  background: white;
  border: solid 1px rgb(4, 56, 4);
  color: rgb(4, 56, 4);
}

.membership_form {
  width: 50%;
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  border-radius: 5px 20px 20px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  display: none;
}

#window_clos {
  cursor: pointer;
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 35px;
  color: rgb(151, 53, 53);
  border-radius: 50%;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 30px;
}

form div > h2 {
  color: rgb(138, 223, 138);
  margin-bottom: 20px;
  text-align: center;
  font-size: 35px;
}

form div > p {
  text-align: center;
  color: gray;
}

form div > p.reminder {
  color: darkred;
}

form input {
  margin-top: 10px;
}

#form input[type=text], #form input[type=email], #form input[type=tel] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 13px;
  height: 55px;
  opacity: 0.8;
  border: 1px #232325 solid;
}

#form input[type=number] {
  width: 30%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 13px;
  height: 55px;
  opacity: 0.8;
  border: #232325 1px solid;
}

#form input[type=submit] {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

#form input[type=button] {
  background: #007bff;
  background: rgb(138, 223, 138);
  width: 200px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

#nextBtn {
  margin-top: 10px;
}

#nextBtn:hover, #prevBtn:hover {
  transform: scale(0.8);
  transition: 0.3s ease-in-out;
}

div.action {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
}

div.pre_information {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

select {
  width: 30%;
  height: 55px;
  border-radius: 10px;
  border: 1px solid #232325;
}

table {
  width: 98%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-top: 40px;
  margin-bottom: 20px;
  border-radius: 30px;
}

th, td {
  border: 1px solid rgb(104, 103, 103);
  padding: 8px;
  text-align: left;
}

th {
  background-color: rgba(14, 13, 13, 0.822);
  color: rgba(255, 255, 255, 0.945);
}

tr:nth-child(even) {
  background-color: rgba(179, 174, 174, 0.836);
}

/* Header styling */
.wico_management {
  height: 100px;
}

.a_header {
  background: url(../images/body.png) no-repeat top right, url(../images/body.png) no-repeat bottom left, url(../images/body.png) no-repeat top left;
  background-color: #315331 !important;
  padding: 10px;
  text-align: right;
  height: auto;
  display: flex;
  justify-content: space-between;
  justify-items: center;
  border-radius: 10px;
  width: 98%;
  margin: auto;
  margin-top: 5px;
}
.a_header a {
  color: #f3f3f3;
  text-decoration: none;
  margin: 10px;
  font-weight: bold;
  position: relative;
}
.a_header a i {
  display: none;
}

.sign_out {
  float: right;
}

.admin_head {
  font-size: 40px;
  -webkit-background-clip: text;
          background-clip: text;
  color: #315331;
  -webkit-mask-image: url(../images/backText.png);
          mask-image: url(../images/backText.png);
  -webkit-mask-size: 120px;
          mask-size: 120px;
  text-align: center;
  padding: 10px;
  margin-top: 50px;
}

.add_staff {
  background-color: #315331;
  border-radius: 30px;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  margin: 10px;
}
.add_staff a {
  text-decoration: none;
  font-size: medium;
  color: #fff;
  text-transform: uppercase;
}

.welcome {
  width: 100%;
  display: flex;
  justify-content: space-around;
  font-size: 40px;
}
.welcome img {
  width: 120px;
  height: 100px;
}
.welcome .admin_head1 {
  width: 55%;
  color: rgb(62, 141, 62);
  padding: 0 10px 20px 10px;
  -webkit-mask-image: url(../images/backText.png);
          mask-image: url(../images/backText.png);
  -webkit-mask-size: 120px;
          mask-size: 120px;
}
.welcome h1 span::after {
  background: url(../images/brush.png) no-repeat center bottom;
  background-size: 100% auto;
  content: "";
  height: 90%;
  right: 33%;
  position: absolute;
  top: 25%;
  width: 86%;
  z-index: -2;
  color: green;
  max-width: 1400px;
}

.here {
  text-align: center;
  font-size: 25px;
  -webkit-background-clip: text;
          background-clip: text;
  color: rgba(55, 94, 55, 0.9647058824);
  -webkit-mask-image: url(../images/backText.png);
          mask-image: url(../images/backText.png);
  -webkit-mask-size: 120px;
          mask-size: 120px;
  padding: 10px;
}

.adnin_footer_encloser {
  display: flex;
  width: 100%;
  flex-direction: column;
  background: url(../images/body.png) no-repeat top right, url(../images/body.png) no-repeat bottom left;
  border-top: 2px solid black;
  background-color: #315331 !important;
}
.adnin_footer_encloser .admin_quick_links {
  display: flex;
  width: 90%;
  justify-content: space-between;
  justify-items: center;
  margin: auto;
}
.adnin_footer_encloser .admin_quick_links .lik_container {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
.adnin_footer_encloser .admin_quick_links .lik_container .q_links a {
  text-decoration: none;
  color: white;
  font-size: large;
  position: relative;
}
.adnin_footer_encloser .admin_quick_links .lik_container .q_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0% 100%;
  transition: transform 0.3s;
}
.adnin_footer_encloser .admin_quick_links .lik_container .q_links a:hover::after {
  transform: scaleX(1);
}
.adnin_footer_encloser .admin_quick_links .footer_logo {
  border-radius: 10px;
}
.adnin_footer_encloser .admin_quick_links .footer_logo img {
  width: 150px;
  height: auto;
}
.adnin_footer_encloser .last_line {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px;
  width: 90%;
  margin: auto;
  color: white;
  font-size: large;
  border-bottom: 1px solid #fff;
}
.adnin_footer_encloser .last_line .developer a {
  text-decoration: none;
  color: white;
  font-size: large;
}
.adnin_footer_encloser .finisher {
  text-align: center;
  color: white;
  padding: 10px;
  font-size: large;
}

.hmburger, .hmburger_close, .decoration_header {
  display: none;
}

@media (max-width: 1024px) {
  .messages {
    width: 90%;
  }
  .message-container {
    margin-bottom: 50px;
  }
  .go_back a {
    margin-top: 20px;
    padding: 10px 20px 10px 20px;
  }
  .membership_form {
    position: fixed;
    width: 98%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto; /*  not this one here cccccccccccccccccccccccccccccccccccc*/
  }
  #window_clos {
    left: 2px;
    top: 1px;
    font-size: 25px;
  }
}
/* Media query for small screens (e.g., smartphones) */
@media (max-width: 768px) {
  .hmburger_close {
    display: block;
    position: relative;
    top: 4px;
    left: 5px;
    background: #315331;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
  }
  .hmburger_close:hover {
    background: darkred;
    transition: background-color 0.5s, color 0.5s;
  }
  .decoration_header {
    background: url(../images/body.png) no-repeat top right, url(../images/body.png) no-repeat bottom left, url(../images/body.png) no-repeat top left;
    background-color: #315331 !important;
    height: 50px;
    width: 95%;
    margin: auto;
    border-radius: 20px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .decoration_header span {
    color: white;
    font-weight: bold;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
    display: none;
  }
  .wico_management {
    display: none;
    width: 0;
    transition: width 0.5s;
    transform: translateX(100%);
  }
  .wico_management.open {
    width: 80%;
    height: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;
    z-index: 3;
    transform: translateX(0);
  }
  .wico_management .a_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
  }
  .wico_management .a_header a {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    text-decoration: none;
    padding: 10px;
    color: #fff;
  }
  .wico_management .a_header a i {
    display: block;
    margin-right: 10px;
  }
  @keyframes openWico {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes closeWico {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
  .welcome {
    margin-top: 80px;
    font-size: 25px;
  }
  .welcome .admin_head1 {
    width: 70%;
    padding: 10px 5px 20px 20px;
  }
  .welcome h1 span::after {
    display: none;
  }
  .hmburger {
    display: block;
    position: absolute;
    top: 60px;
    right: 26px;
    margin-bottom: 50px;
    background: #315331;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
  }
  .hmburger img {
    width: 50px;
    height: 50%;
  }
  .admin_head {
    font-size: large;
    margin-top: 100px;
  }
  .here {
    font-size: medium;
  }
  .tabletab {
    overflow-x: scroll !important;
  }
  .adnin_footer_encloser .admin_quick_links {
    width: 100%;
  }
  .adnin_footer_encloser .admin_quick_links .lik_container {
    width: 90%;
    justify-content: space-around;
  }
  .adnin_footer_encloser .admin_quick_links .lik_container .q_links a {
    font-size: medium;
  }
  .adnin_footer_encloser .admin_quick_links .footer_logo {
    border-radius: 10px;
  }
  .adnin_footer_encloser .admin_quick_links .footer_logo img {
    width: 90px;
    height: auto;
  }
}
/* Media query for medium-sized screens (e.g., tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome h1 span::after {
    background-size: 70% auto;
    right: 33%;
    top: 25%;
  }
}
/* Media query for large screens (e.g., desktops) */
@media (min-width: 1025px) {
  .welcome h1 span::after {
    background-size: 90% auto;
    right: 18%;
    top: 21%;
  }
}/*# sourceMappingURL=alert.css.map */