.export-btn-custom {
  background: #879cb9;
  color: #fff !important;
  border: 1px solid transparent;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease; }

.export-btn-custom:hover {
  background: #59769e; }

.export-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center; }

.export-modal-content {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden; }

.export-modal-header {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.export-modal-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center; }

.export-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0; }

.export-modal-close:hover {
  color: #111; }

.export-modal-body {
  padding: 18px; }

.export-alert-info {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #495057;
  padding: 10px 14px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 16px; }

.export-options-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222; }

.export-format-options {
  display: flex;
  gap: 12px;
  margin-bottom: 20px; }

.export-format-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0; }

.export-format-card:hover {
  border-color: #879cb9;
  background: #f8f9fa; }

.export-format-card.active {
  border-color: #007bff;
  background: #f0f7ff; }

.export-format-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #222; }

.export-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 10px; }

.export-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease; }

.export-action-download {
  background: #879cb9;
  color: #fff !important;
  border: 1px solid transparent; }

.export-action-download:hover {
  background: #59769e; }

.export-action-copy {
  background: #f8f9fa;
  color: #495057 !important;
  border: 1px solid #ced4da; }

.export-action-copy:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  color: #212529 !important; }