a{
    cursor: pointer;
  }
  
  .hero-section{
    background-image:linear-gradient(to right,rgb(33, 60, 92),rgb(35, 58, 109),rgba(12, 67, 112,0.3)),url("../assets/images/blacklist.jpg");
  }

  .hero-text h3{
    color:rgb(255, 255, 255) !important;
  }

.blacklisted{
   border-bottom:3px solid rgb(223, 15, 15);;
  }

  .people-container{
    display: flex;
    justify-content: space-between;
}


.txt-no-round{
    background-color: pink;
    padding: 20px;
    border-radius: 10px;
    font-size: 2rem;
    width: 100%;
}

.col-md-4 h5{

font-weight: bold;
font-size:18px;
margin:10px;

}


#missing-layout{

    display:flex;
    justify-content:space-between;
    flex-wrap: wrap; 

}


@media only screen and (max-width:497px){

  #missing-layout{

    display:flex;
    justify-content:center !important;
    align-items: center;
    flex-direction: column;
   

}

}



#missing-layout figure{
    width:240px !important;
  
    margin:30px 0px !important;
}


@media only screen and (max-width:497px){
 
    #missing-layout figure{
        width:320px !important;
        text-align: center !important;
    }
    
}



#missing-layout figure img{
width:100%;
height:180px;

}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  z-index: 9999; /* Ensure the overlay is on top of other content */
}

/* Style for the loading image */
.loader {
  border: 10px solid #f3f3f3; /* Light grey border */
  border-top: 10px solid #3498db; /* Blue border for animation */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite; /* Rotate animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Style for the main content */
.content {
  padding: 20px;
  text-align: center;
  margin-top: 50px; /* Adjust margin to avoid overlay covering content */
  z-index: 1; /* Ensure main content is behind the overlay */
}

