.my-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    /* overflow: auto; */
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .my-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
  }
  
  .my-modal-close {
    position: absolute;
    top: 2px;
    right: 5px;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .card-grid-wrapper-influencer {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
    
  }
  
  /* Card with overlay */
  .card-influncer {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(to right, #323268, #1E40AF);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .card-influncer:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }

  .card-influncer.selected {
    border: 3px solid #f97316; /* Tailwind's orange-500 */
    box-shadow: 0 0 15px #fb923caa; /* Slightly lighter orange glow */
    transform: translateY(-8px) scale(1.02);
  }
  
  
  .card-influncer img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }
  
  /* Overlay text on top of the image */
  .card-overlay-influncer {
    position: absolute;
    top: 88%;
    left: 10px;
    right: 10px;
    /* background-color: white; */
    color: black;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;

    min-height: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 4px;
  }
  


  .influencer-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    color: #1E40AF; /* Optional: theme color */
  }


  .influencer-name-label {
    position: absolute;
    left: 25%;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  

  .submit-wrapper {
    /* margin-top: 30px; */

    width: 100%;
    margin: auto;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    
  }

  #submitSelectionBtn {
    padding: 10px 20px;
    
    font-size: 16px;
    background-color: #1E40AF;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .selected-message {
    margin-top: 15px;
    font-size: 16px;
    color: #f97316; /* orange */
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
  }


  .myformcss{
    display: block;
    padding: 21px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .myownbtn:hover{
    background-color: #1E40AF !important;
    color: white !important;
  }


  .anewclassforcard {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(to right, #323268, #1E40AF);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .anewclassforcard:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }

   .anewclassforcard.selected {
    border: 3px solid #f97316; /* Tailwind's orange-500 */
    box-shadow: 0 0 15px #fb923caa; /* Slightly lighter orange glow */
    transform: translateY(-8px) scale(1.02);
  }

 
  /* fff */