.dap-popup {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 9999;
  width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
  border-radius: 6px;
}

.dap-inner {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

.dap-inner img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.dap-top {
  flex: 1;
}

.dap-top h3 {
  margin: 15px 0 0;
  font-size: 18px;

}

.dap-top .role {
  font-weight: bold;
  color: #888;
  margin-bottom: 5px;
  font-size: 14px;
}

.dap-top .social {
  margin: 5px 0;
}

.dap-lower {
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.dap-lower .desc {
  font-size: 14px;
  margin-bottom: 10px;
}

.dap-lower .stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 10px;
}

.dap-lower .stats div {
  flex: 1;
  font-size: 0.8rem;
}
.dap-lower .stats strong{
  font-size: 1.5rem;
}

.read-bio {
  display: inline-block;
  padding: 6px 12px;
  background: #00c1c1;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
}

.read-bio:hover {
  background: #333;
  color: #fff;
}

.dap-close {
  position: absolute;
  top: 6px;
  right: 10px;
  padding: 0px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #00c1c1;
}

.dap-close:hover {
  color: #333;
  background: none;
}

@media (max-width: 768px) {
  .dap-popup {
      width: calc(100% - 30px);
      max-width: none;
      left: 15px !important;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      overflow-y: auto;
  }
}