body{font-family:Segoe UI,Roboto,Arial,sans-serif;background:#f6f7fb;color:#111;margin:0}
.container{max-width:980px;margin:30px auto;padding:20px;background:#fff;border-radius:8px;box-shadow:0 6px 20px rgba(0,0,0,.06)}
h1{margin-top:0}
input{padding:10px;width:70%;margin-right:8px;border:1px solid #ddd;border-radius:6px}
button{padding:10px 16px;border:none;background:#f90;color:#fff;border-radius:6px;cursor:pointer; margin-top:20px}
pre{background:#f2f4f9;padding:12px;border-radius:6px;overflow:auto}
.sitemap{list-style:none;padding-left:0}
.sitemap li{margin-bottom:6px}
.note{margin-top:16px;color:#666}
.meta{color:#666;font-size:.9rem}


  section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
  }
  section h2 {
    margin-top: 0;
    color:#f90;
  }

#crawl {
	width: 20px !important;
	padding-left: 10px !important;
}

/* Placeholders — gris très pâle */
::placeholder {
    color: #c7c7c7;      /* gris pâle */
    opacity: 1;          /* nécessaire pour Firefox */
}

/* Pour compatibilité maximale */
input::placeholder,
textarea::placeholder {
    color: #c7c7c7;
}


#loader-overlay {
        position: fixed;
        top:0; left:0;
        width:100%; height:100%;
        background: rgba(255,255,255,0.95);
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        z-index:9999;
        font-family:Arial, sans-serif;
        opacity:0;
        pointer-events:none;
        transition: opacity .3s;
    }

    #loader-overlay.active {
        opacity:1;
        pointer-events:auto;
    }

    .loader-bar {
        width:60%;
        height:10px;
        background:#eee;
        border-radius:5px;
        overflow:hidden;
        margin-top:20px;
    }

    .loader-bar-fill {
        height:100%;
        width:0%;
        background:#f90;
        animation: loader-animation 3s infinite;
    }

    @keyframes loader-animation {
        0% { width:5%; }
        50% { width:80%; }
        100% { width:30%; }
    }

    .loader-text {
        font-size:18px;
        color:#333;
        margin-top:15px;
    }

