body {
    margin: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background-color:cornflowerblue;
  }
  
  .feedback-container {
    background-color:beige;
    width: 400px;
    height: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
  }
  
  .emoji-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
  }
  
  .far {
    margin: 1px;
    transform: translateX(0);
    transition: transform 0.2s;
  }
  
  .rating-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
  }
  
  .fa-star {
    color:lightskyblue;
    cursor: pointer;
  }
  
  .fa-star.active {
    color: gold;
  }