.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #ffa500;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* Review Button Styling */
  .review-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
  }

  .review-button:hover {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .review-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(255, 140, 0, 0.4);
  }