/* Export Modal */
#exportModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  animation: fadeIn 0.3s;
}

#exportModal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.export-modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  overflow: hidden;
}

.export-modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.export-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.export-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #9ca3af;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}

.export-modal-close:hover {
  background: #f3f4f6;
  color: #1a1a1a;
}

.export-modal-body {
  padding: 28px;
}

.export-modal-body p {
  margin: 0 0 24px 0;
  color: #6b7280;
  font-size: 14px;
}

.export-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.export-option {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.export-option:hover {
  border-color: #667eea;
  background: #f8f9ff;
  transform: translateX(4px);
}

.export-option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}

.export-option-word .export-option-icon {
  background: linear-gradient(135deg, #2b579a 0%, #1c4180 100%);
  color: white;
}

.export-option-gdoc .export-option-icon {
  background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
  color: white;
}

.export-option-text {
  flex: 1;
}

.export-option-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.export-option-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.export-option-arrow {
  font-size: 20px;
  color: #9ca3af;
  transition: transform 0.2s;
}

.export-option:hover .export-option-arrow {
  transform: translateX(4px);
  color: #667eea;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .export-modal-content {
    width: 95%;
    margin: 20px;
  }

  .export-modal-header {
    padding: 20px;
  }

  .export-modal-body {
    padding: 20px;
  }

  .export-option {
    padding: 16px;
  }

  .export-option-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 12px;
  }
}
