/* 班组履职评价系统 V1.6
 * 新增“标准表格导出”格式选择，不改变原有汇总表格导出。
 */

.export-format-block {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.export-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.export-format-grid button {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 13px 14px;
  border: 1px solid #d9e5ed;
  border-radius: 12px;
  background: #f8fbfd;
  color: #526b7f;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.export-format-grid button strong {
  color: #294c67;
  font-size: 13px;
}

.export-format-grid button small {
  color: #7c8d9b;
  line-height: 1.45;
}

.export-format-grid button.active {
  border-color: #73b8da;
  background: linear-gradient(145deg, #f3fbff, #e8f5fb);
  box-shadow: 0 7px 18px rgba(17, 112, 168, .12);
}

.export-format-grid button.active strong {
  color: #0871b3;
}

.export-format-grid button:active {
  transform: translateY(1px);
}

.export-preview-mode.hidden {
  display: none;
}

@media (max-width: 760px) {
  .export-format-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .export-format-grid button {
    min-height: 74px;
  }
}
