.report-page {
  /* padding: 20px; */
  background-color: white;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  padding: 0 4px;
}

.report-item {
  background: white;
  border-radius: 16px;
  padding: 16px 24px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.report-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.report-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.report-item:hover::after {
  opacity: 1;
}

.report-item i {
  font-size: 24px;
  color: #007aff;
  flex-shrink: 0;
}

.report-item span {
  font-size: 15px;
  color: #333;
  text-align: center;
}

.report-query-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 1000;
  display: none;
  flex-direction: column;
  max-width: 393px;
  margin: 0;
}

.report-query-page.active {
  display: flex;
}

.report-query-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.back-button {
  border: none;
  background: none;
  font-size: 16px;
  color: #007aff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  position: absolute;
  left: 16px;
}

.report-query-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.report-query-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: white;
}

.filter-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.filter-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.filter-input:focus {
  border-color: #007aff;
  outline: none;
}

.query-button {
  width: 100%;
  padding: 14px;
  background: #007aff;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.query-button:hover {
  background: #0066d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
}

.query-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.query-results {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
