.imta-fb-finder-wrap {
  max-width: 640px;
  margin: 60px auto;
  padding: 32px 28px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", "Inter", sans-serif;
  transition: all 0.3s ease;
}

.imta-fb-finder-wrap:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.imta-fb-finder-wrap label {
  font-weight: 600;
  color: #222;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}

.imta-fb-finder-wrap input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #d0d7de;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.imta-fb-finder-wrap input[type="url"]:focus {
  outline: none;
  border-color: #0078ff;
  box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.15);
}

.imta-fb-finder-wrap button {
  padding: 10px 22px;
  background: linear-gradient(135deg, #0078ff, #00c4ff);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 120, 255, 0.3);
 
}

.imta-fb-finder-wrap button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 120, 255, 0.4);
}

#imta_fb_find_btn.loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
  background: linear-gradient(135deg, #0078ff, #00c4ff);
  opacity: 0.9;
}

#imta_fb_find_btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#imta-fb-result {
  margin-top: 24px;
  background: #f9fafc;
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

#imta-fb-result strong {
  color: #111827;
}

#imta-fb-id {
  color: #0078ff;
  font-weight: 600;
}

#imta-fb-shorturl a {
  color: #0366d6;
  text-decoration: none;
  font-weight: 500;
}

#imta-fb-shorturl a:hover {
  text-decoration: underline;
}

#imta-fb-error {
  color: #d93025;
  font-weight: 500;
  margin-top: 8px;
}
