@font-face {
  font-family: 'Font Awesome 5 Brands';
  src: url('fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.main-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 15px 0px;
  flex-wrap: wrap;
}

#nothing-alert{
	display: none;
	width: 100%;
	margin: 50px auto;
  text-align: center;
}

.cards {
  display: flex;
/*   justify-content: center; */
  align-items: center;
/*   flex-direction: column; */
width: 500px;
  height: 80px; 
  margin: 0.6em;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
  animation: populate 0.6s ease-out normal backwards;
	    border: 1px solid #e1e1e1;
	padding:20px;
	text-decoration: none;
	color: inherit;

}



.cards:hover {
  transform: scale(1.00);
  z-index: 1;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
	    border: 1px solid #800d13;
	padding:20px;
}
.cards img {
  display: block;
  margin-bottom: 10px;
}

@keyframes populate {
  0% {
    transform: scale(0);
  }
}

.icon-name {
/*   font-size: 0.7em; */
	font-size:16px;
/*   text-align: center; */
  margin: 0;
	line-height: 1.625;
	color:#5b5959;
}

.search-container{
  position: relative;
   height: 70px; 
/*   max-width: 650px;
  width: 70%; */
  background: #fff;
  border-radius: 8px;
 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);  
/* 	       padding: 6px 40px 2px; */
/*     box-shadow: 0 4px 20px rgba(158, 158, 158, 0.4); */
    max-width: 780px;
    margin: 0 auto;
	  
}

.search-container i {
  position: absolute;
  left: 20px;
  font-size: 16px;
  color: #707070;
	    
   
}
.sds-download-icon{
	margin-right: 20px;
	width: 70px;
    height: 70px;
}

#search-input{
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  border: none;
  padding-left: 50px;
  background-color: transparent;
}

@media screen and (max-width: 786px) {
  .search-container{
    width: 100%;
  }
}


@media screen and (max-width: 786px) {
  .search-container {
    width: 100%;
    padding: 15px 0; /* Add top and bottom spacing */
  }

  .cards {
    padding: 15px; /* More internal spacing inside cards */
  }

  .icon-name {
    font-size: 14px; /* Optional: reduce font size for better fit */
  }

  .sds-download-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
}