    /* Popup Overlay - Covers full screen */
    .age-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      /* Dark overlay */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999999;
      /* Ensures it sits on top */
    }

    /* Popup Box Styling */
    .age-popup-content {
      background-color: #efd7b1;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      max-width: 430px;
      width: 90%;
      font-family: "DM Sans", sans-serif;
    }

    .age-popup-content h2 {
      margin-top: 0;
      color: #333;
    }

    .age-popup-content img {
      margin: 20px auto;
    }

    .age-popup-buttons {
      margin-top: 20px;
    }

    /* Button Styling */
    .age-btn {
      padding: 10px 20px;
      margin: 0 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
    }

    .confirm {
      background-color: #28a745;
      color: white;
    }

    .confirm:hover {
      background-color: #218838;
    }

    .deny {
      background-color: #9d260e;
      color: white;
    }

    .deny:hover {
      background-color: #c82333;
    }