/* ===== BOUTON TESTER URL ===== */

.entry-content .check-url-wrapper {
  margin-top: 12px;
  text-align: center;
}

.entry-content .check-url-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #3498db;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: background 0.3s;
}

.entry-content .check-url-btn:hover {
  background: #2980b9;
  color: #fff;
}

.entry-content check-url-btn.checking {
  pointer-events: none;
  background: #000000;
  color: #fff;
}

.entry-content .check-url-btn.hidden {
  display: none;
}

/* ===== RÉSULTAT ===== */

.entry-content .check-url-result {
  display: none;
  margin-top: 12px;
}

.entry-content .check-url-result.visible {
  display: block;
}

/* ===== BARRE DE PROGRESSION ===== */

.entry-content .progress-bar {
  background: #eee;
  border-radius: 6px;
  height: 24px;
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto;
}

.entry-content .progress-fill {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  height: 100%;
  width: 0%;
  border-radius: 6px;
  transition: width 0.3s;
}

.entry-content .progress-msg {
  color: #777;
  font-size: 13px;
  margin: 8px 0 0;
}

/* ===== RÉSULTAT SUCCÈS ===== */

.entry-content .check-success {
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.entry-content .check-success-icon {
  font-size: 22px;
}

.entry-content .check-success-title {
  color: #155724;
  font-size: 16px;
}

.entry-content .check-success-detail {
  color: #155724;
  font-size: 13px;
  margin: 8px 0 0;
}