.sitemap-gen-wrap { max-width: 850px; margin: 20px auto; font-family: 'Segoe UI', sans-serif; }
.tool-header { text-align: center; margin-bottom: 25px; }
.sitemap-card { background: #fff; border-radius: 12px; padding: 30px; border: 1px solid #eef2f6; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 20px; position: relative; }

.sitemap-input-group { display: flex; gap: 10px; }
#site-url { flex: 1; padding: 15px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 16px; outline: none; }
#sitemap-btn { background: #10b981; color: white; border: none; padding: 0 25px; border-radius: 8px; font-weight: bold; cursor: pointer; }

/* Realistic Loader Styles */
#sm-loader { position: absolute; top:0; left:0; width:100%; height:100%; background:rgba(255,255,255,0.98); display:flex; flex-direction:column; align-items:center; justify-content:center; z-index:10; border-radius:12px; }
.sm-spinner { width: 40px; height: 40px; border: 4px solid #f3f3f3; border-top: 4px solid #10b981; border-radius: 50%; animation: sm-spin 1s linear infinite; }
@keyframes sm-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.sm-progress-wrap { width: 60%; height: 8px; background: #eee; border-radius: 10px; margin-top: 15px; overflow: hidden; }
#sm-bar { height: 100%; width: 0%; background: #10b981; transition: width 0.4s; }

/* XML Code Display */
#sitemap-output { background: #1e293b; color: #f8fafc; padding: 20px; border-radius: 8px; font-family: 'Courier New', monospace; font-size: 13px; overflow-x: auto; white-space: pre-wrap; margin-top: 15px; max-height: 400px; }
.result-header { display: flex; justify-content: space-between; align-items: center; }
.result-actions button { padding: 8px 15px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; font-size: 12px; margin-left: 5px; }
.btn-dl { background: #3b82f6; color: white; }