

.feedback-button {
   
      z-index: 9999;
      background-color: #6996E6;
      color: #fff;
      padding: 8px;
      border-radius: 10px;
      cursor: pointer;
      width: 40px;
      
    }
    
 
    
    /* Style for the modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 99999;
    }
    /* Style for the modal content */
    .modal-content {
      background-color: #20201F;
      color: aliceblue;
      max-width: 400px;
      margin: 100px auto;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }
    /* Style for the feedback options */
    .feedback-options {
      margin-top: 20px;
    }
    /* Style for the feedback option buttons */
    .feedback-option {
      background-color: #6996E6;
      color: #fff;
      padding: 10px 20px;
      margin-right: 8px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 22px; /* Set initial font size of emojis */
    cursor: pointer;
    transition: font-size 0.5s ease-in-out; 
    }
    .feedback-option:hover {
        font-size: 25px; /* Increase font size of emojis on hover */
    }
    /* CSS for close button */
.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #f00; 
    
  }
  .emoji {
    font-size: 22px; /* Set initial font size of emojis */
    cursor: pointer;
    transition: font-size 0.5s ease-in-out; /* Add smooth transition effect */
  }
  .emoji:hover {
    font-size: 28px; /* Increase font size of emojis on hover */
  }
  .emoji-img {
    width: 30px; /* Set the desired width for the images */
    height: 30px; /* Set the desired height for the images */
    cursor: pointer;
    transition: transform 0.5s ease-in-out; /* Add smooth transition effect on transform property */
  }
  
  .emoji-img:hover {
    transform: scale(1.4); /* Scale up the image on hover */
    cursor: pointer;
  }
  
  button {
    border: none;
  }
  form {
    margin-top: 20px;
        
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
      height: 70px;
}


textarea.form-control {
    resize: vertical;
      height: 70px;
}
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3e3e3e;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
