.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    backdrop-filter: blur(5px);
    z-index: 1000;
  }
  
  .feedback-wrapper {
    display: none;
    position: fixed;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    padding: 100px;
    border-radius: 10px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .close-btn {
    position: absolute;
    top: 37px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .feedback-form {
    display: flex;
    flex-direction: column;
  }
  
  .rating-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .rating-container button {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  #feedback-form label {
    margin-top: 10px;
  }
  
  #feedback-form input,
  #feedback-form textarea {
    margin-bottom: 10px;
    padding: 5px;
  }
  
  .btn {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }