.hrm-report-page {
  min-height: calc(100vh - 58px);
  padding: 20px;
  background: #f4f7f8;
}

.report-header,
.report-toolbar,
.report-actions,
.report-preview {
  border: 1px solid #dfe8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(28, 45, 56, .05);
}

.report-header {
  padding: 16px;
  margin-bottom: 14px;
}

.report-header h2 {
  margin: 0;
  color: #1f2933;
  font-size: 24px;
  font-weight: 850;
}

.report-header p,
.report-preview p {
  margin: 4px 0 0;
  color: #6b7c86;
  font-size: 13px;
}

.report-toolbar {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(140px, 1fr));
  gap: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

.report-toolbar label span {
  display: block;
  margin-bottom: 5px;
  color: #40545e;
  font-size: 12px;
  font-weight: 800;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  margin-bottom: 14px;
}

.report-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.report-preview {
  padding: 16px;
}

.report-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.report-preview h3 {
  margin: 0;
  color: #26333b;
  font-size: 18px;
  font-weight: 850;
}

.report-preview-head strong {
  min-width: 52px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #22313f;
  color: #fff;
}

.report-preview th {
  background: #ddebf7;
  color: #22313f;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .report-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .report-toolbar {
    grid-template-columns: 1fr;
  }
}
