@import url("https://fonts.cdnfonts.com/css/space-grotesk");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

body {
  width: 100%;
  height: 125vh;
  background-color: #17292d;
  background-image: url("images/cdots.png");
  background-repeat: no-repeat;
  background-size: cover;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #17292d;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: none;
}

.navbar {
  background-image: linear-gradient(to top, #11f96d, #17292d);
  width: 100%;
}

.navbar .navbar-brand {
  color: #17292d;
  font-weight: bold;
  align-items: center;
  display: flex;
  padding: 12px;
}
.navbar .navbar-brand span {
  font-weight: 600;
  font-size: 25px;
}

.navbar-brand img {
  /* margin: 5px; */
  width: auto;
  height: 40px;
  margin-right: 1rem;
  margin-left: 70px;
  border-radius: 50%;
}

.heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: aliceblue;
  text-shadow: aliceblue;
  background-color: #17292d;
}

.modal-confirm {
  color: aliceblue;
  width: 325px;
  font-size: 14px;
}
.modal-confirm .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none;
  background: #17292d;
  box-shadow: 0px 0px 10px 2px #11f96d;
}
.modal-confirm .modal-header {
  border-bottom: none;
  /* position: relative; */
}

.modal-confirm,
.modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px;
}
.modal-confirm .heading-card {
  text-align: center;
}
.modal-confirm .heading-card h3 {
  color: #11f96d;
  font-weight: 600;
}
.modal-confirm .heading-card h5 {
  color: aliceblue;
  margin-top: 0.5rem;
  font-weight: 500;
}

.modal-confirm .close {
  position: absolute;
  top: -5px;
  right: -5px;
}
.modal-confirm .modal-footer {
  border: none;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
}
.modal-confirm .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -90px;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  z-index: 9;
  background: #11f96d;
  padding: 2px;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-confirm .modal-body {
  justify-content: center;
}

.modal-confirm .modal-body .details .col-5,
.col-1 {
  color: #11f96d;
  font-size: 14px;
  font-weight: 500;
}
.modal-confirm .modal-body .details {
  margin-top: 1rem;
}
.modal-confirm .modal-body .address {
  margin-top: 0.5rem;
  color: aliceblue;
}
.modal-confirm .modal-body .addresshead {
  color: #11f96d;
  font-weight: 600;
}
.modal-confirm .modal-body .addressmain {
  border-radius: 5px;
  padding: 5px 5px;
  margin-top: 2rem;
}


.modal-confirm.modal-dialog {
  margin-top: 120px;
}


.modal-confirm .modal-header {
  margin-top: 6rem;
}

.table-wrapper {
  width: 90%;
  height: 70vh;
  position: relative;
  margin: auto;
  font-size: 14px;
  overflow: auto;
}

#employers {
  background-color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;

}
#employers thead{
  margin-top: 0rem;
  top: 0;
  padding: 0;
  border:1px solid #04aa6d;

}

#employers td,
#employers th {
  border: 1px solid #ddd;
  padding: 7px 6px;
}

/* #employers tr:nth-child(even) {
  background-color: #f2f2f2;
} */

#employers tr:hover {
  background-color: #17292d;
  color: aliceblue;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

#employers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04aa6d;
  color: white;
  position: sticky;
  top: 0;
  /* z-index: 2; */
}

.card-wrapper {
  width: 90%;
  height: 70vh;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.card-wrapper .card-header {
  background-color: #11f96d;
  color: #17292d;
  border-radius: 10px 10px 0 0;
  padding: 15px;
  text-align: left;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1;
}

.card-scrollable-content {
  max-height: calc(70vh - 45px);
  overflow-y: auto;
  overflow-x: hidden;
}

.card-wrapper .card-content {
  text-align: left;
  background-color: #17292d;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0px 0px 10px 2px #11f96d;
}

.card-row {
  display: flex;
  align-items: center;
  border: 3px solid #11f96d;
  padding: 15px 0px;
  background-color: aliceblue;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 15px;
}

.card-row:hover {
  background-color: #11f96d;
  color: #17292d;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .card-wrapper {
    display: none;
  }
  .table-wrapper {
    display: block;
  }
  body {
    width: 100%;
    height: 100vh;
    background-color: #17292d;
    background-image: url("images/cdots.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .table-wrapper {
    display: none;
  }
  .card-wrapper {
    display: block;
    text-align: center;
    margin: 5px auto;
  }
  .navbar .navbar-brand span {
    font-size: 14px;
    font-weight: 600;
  }
  .navbar-brand img {
    width: auto;
    height: 34px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 1rem;
  }
  .navbar .navbar-brand {
    color: #17292d;
    font-weight: bold;
    /* align-items: center;
    display: flex; */
    padding: 12px;
  }
  .heading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: aliceblue;
    text-shadow: aliceblue;
    background-color: #17292d;
  }
  body {
    width: 100%;
    height: 100vh;
    background-color: #17292d;
    background-image: url("images/cdots.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
