.result {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .result .card {
    width: calc(33.33% - 20px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .result .card:hover {
    transform: translateY(-10px);
  }
  .result .card-header {
    background: #3b5998;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
  }
  .result .card-body {
    padding: 20px;
    text-align: center;
  }
  .result .highlight {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  .result .description {
    color: #777;
    font-size: 16px;
    line-height: 1.5;
  }
  .result .media-container {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
  }
  audio, video {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  /* Popup styles */
  .result .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .result .popup-video {
    width: 80%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
  }
  @media (max-width: 1024px) {
    .result .card {
      width: calc(50% - 20px);
    }
  }
  @media (max-width: 768px) {
    .result .card {
      width: 100%;
    }
  }

  .influencers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  .influencer-card {
    width: 150px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
  .influencer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .profile-picture {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* Circular profile picture */
    margin-bottom: 10px;
  }
  .influencer-name {
    font-size: 16px;
    font-weight: bold;
    color: #3b5998;
    margin: 0;
  }
  @media (max-width: 768px) {
    .influencers-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .influencer-card {
      width: 120px;
    }
    .profile-picture {
      height: 120px;
    }
  }