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

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

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

body {
  margin: 0%;
  width: 100%;
  height: 145vh;
  background-image: url("images/cdots.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.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%;
}

@media screen and (max-width: 768px) {
  .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;
  }
  
}

.employee-details {
  width: 20rem;
  height: auto;
  position: absolute;
  top: 10rem;
  bottom: 10rem;
  left: 0;
  right: 0;
  border-radius: 10px;
  margin: auto;
}

.employee-details .card {
  background-color: #17292d;
  border-color: #11f96d;
  box-shadow: 0px 0px 10px 2px #11f96d;
  border-radius: 10px;
  width: 20rem;
}

.card:hover {
  border-color: #11f96d;
  box-shadow: 0px 0px 10px 2px #11f96d;
}

.employee-details .card img {
  border: 6px solid #11f96d;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 1rem;
  margin-bottom: 0rem;
}

.card-body {
  margin: 1rem;
  color: white;
}

th,
td {
  padding: 5px 3px;
}

.card-body .card-title {
  color: #11f96d;
  font-size: 22px;
}

.main-text .id-no .id {
  color: white;
}
.main-text .id-no .no {
  color: #11f96d;
}

.card-body .green {
  color: #11f96d;
  font-size: 13px;
}
.card-body .white {
  color: white;
  font-size: 13px;
}

.card-body .main-text {
  text-align: center;
}

.card-body .table {
  background-color: none;
}

.address {
  margin-top: 1rem;
}

.address .add1 {
  margin-bottom: 1rem;
}


@media (min-width: 768px) {

  body {
    width: 100%;
    height: 100vh;
    background-color: #17292d;
    background-image: url("images/cdots.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .employee-details {
    width: 20rem;
    height: auto;
    position: absolute;
    top: 8rem;
    bottom: 10rem;
    left: 0;
    right: 0;
    border-radius: 10px;
    margin: auto;
  }
}