.modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #1a1a1c;
  margin: 2% auto;
  padding: 25px;
  border-radius: 15px;
  width: auto;
  max-width: 900px;
  min-height: auto;
  max-height: 90vh;
  overflow-y: auto;
  color: #d1d1d1 !important;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  box-sizing: border-box;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.analytics-summary {
  margin-top: 15px;
}
.analytics-summary p {
  margin: 5px 0;
}
.analytics-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.analytics-table th,
.analytics-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
.analytics-table th {
  background: #353434;
}
