/* Sitemap XML Plugin - modern black UI */
.sitemap-xml-container {
  background: #000;
  padding: 36px 16px;
  display: flex;
  justify-content: center;
}

.sitemap-xml-card {
  background: linear-gradient(180deg,#0b0b0b,#111);
  color: #fff;
  padding: 26px;
  border-radius: 12px;
  width: 100%;
  max-width: 820px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.sitemap-title {
  font-size: 20px;
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8fafc;
}

.sitemap-input-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.sitemap-input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: #fff;
  outline: none;
  min-width: 0;
}

.sitemap-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.sitemap-btn {
  padding: 11px 16px;
  background: linear-gradient(180deg,#1f8feb,#176fb3);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sitemap-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.sitemap-status {
  margin-top: 12px;
  font-size: 14px;
}

.sitemap-progress {
  margin-top: 12px;
  display: none;
  align-items: center;
  gap: 12px;
}

.sitemap-progress-bar {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  overflow: hidden;
}

.sitemap-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg,#2dd4bf,#06b6d4);
  transition: width 0.4s ease;
}

.sitemap-progress-percent {
  min-width: 40px;
  text-align: right;
  color: #cbd5e1;
  font-size: 13px;
}

.sitemap-download {
  margin-top: 12px;
}

.sitemap-download-link {
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
  display: inline-block;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
}

.error {
  color: #ff8a8a;
  background: rgba(255,138,138,0.03);
  padding: 10px;
  border-radius: 8px;
}

.success {
  color: #7af7b9;
  background: rgba(122,247,185,0.02);
  padding: 10px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .sitemap-input-wrap {
    flex-direction: column;
  }
  .sitemap-btn {
    width: 100%;
  }
}
