/**
 * ProRank Design System - Sitemap Feature Styles
 *
 * Styles specific to sitemap configuration and management.
 *
 * @module features/sitemap
 * @since 3.0.0
 */

/* ============================================
   SITEMAP SETTINGS CONTAINER
   ============================================ */
.prorank-sitemap-settings {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* ============================================
   CONTENT CARDS
   ============================================ */
.prorank-sitemap-settings .prorank-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.prorank-sitemap-settings .prorank-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.prorank-sitemap-settings .prorank-card-header {
  background: linear-gradient(to right, #f9fafb, #f3f4f6);
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 24px;
}

.prorank-sitemap-settings .prorank-card-body {
  padding: 24px;
}

/* ============================================
   SETTINGS WITH FEEDBACK
   ============================================ */
.prorank-sitemap-settings .prorank-setting-with-feedback {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.prorank-sitemap-settings .feedback-vote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 6px;
  font-size: 12px;
  color: #6b7280;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .prorank-sitemap-settings {
    padding: 16px;
  }

  .prorank-sitemap-settings .prorank-tab-navigation {
    padding: 4px;
  }

  .prorank-sitemap-settings .prorank-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prorank-sitemap-settings .prorank-tab-button {
    padding: 8px 16px;
    font-size: 13px;
    min-height: 36px;
  }

  .prorank-sitemap-settings .prorank-card-body {
    padding: 16px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   NOTICES
   ============================================ */
.prorank-sitemap-settings .components-notice {
  margin-bottom: 24px;
  border-radius: 8px;
}

.prorank-sitemap-settings .components-notice.is-success {
  background: #dcfce7;
  border-left: 4px solid #22c55e;
}

.prorank-sitemap-settings .components-notice.is-error {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
}

/* ============================================
   INFO CARDS
   ============================================ */
.prorank-sitemap-settings .prorank-info-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.prorank-sitemap-settings .prorank-info-card p {
  margin: 0;
  color: #9a3412;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   HELP TAB SPECIFIC
   ============================================ */
.prorank-sitemap-settings .prorank-tab-button.prorank-tab-help {
  margin-left: auto;
}

.prorank-sitemap-settings .prorank-tab-button.prorank-tab-help::before {
  content: "?";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #6b7280;
  color: white;
  border-radius: 50%;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  margin-right: 6px;
  font-weight: bold;
}

.prorank-sitemap-settings .prorank-tab-button.prorank-tab-help.is-active::before,
.prorank-sitemap-settings .prorank-tab-button.prorank-tab-help.prorank-tab-button--active::before {
  background: white;
  color: #ff6900;
}