.food-icon{
    height: 150px;
    width: 150px;
}
#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.6); 
  }
#search_input{
    width: 500px;
    margin-left: 300px;
    margin-top: 10px;
    height: 60px;
    border-radius: 20px;
    background-color: #d1ebe5;
    
}
#search_btn{
    margin-right: 4px;
    width: 120px;
    height: 60px;
    margin-top: 10px;
    border-radius: 20px;
    margin-left: 5px;
}   


#Future_data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    justify-content: center;
  }

  .recipe-card-container {
    width: 150%;
  }

  .card {
    border: 1px solid #ddd;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  .search-img{
    margin-top: 20px;
    height: 300px;
    width: 400px;
  }
  .spinner-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

.spinner {
    border: 4px solid #f3f3f3; 
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 480px) {

  #search_input {
    margin-left: 20px;
    width: 200px;
    height: 50px;
  }

  #search_btn {
    width: 100px;
    height: 50px;
  }
  #Future_data{
    display: grid;
  }
  .card{
    width: 250px;
  }

}

@media (min-width: 992px) {
  .card{
    width: 250px;
  }
  .search_input{
    margin-left: 0px;
  }
}
