/* Techniquehow Instagram Email Finder styles */
.th-ief-wrap{
  max-width: 820px; /* a bit wider */
  margin: 10px auto;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #eee;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.th-ief-brand{
  font-weight: 800;
  font-size: 22px;
  letter-spacing:.2px;
  margin-bottom: 10px;
}
.th-ief-brand span{ color:#ff4d4f; }
.th-ief-input{
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 2px solid #8c61ff;
  outline: none;
  font-size: 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.th-ief-input:focus{
  box-shadow: 0 0 0 4px rgba(140,97,255,.15);
  border-color:#6a3dff;
}
.th-ief-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px auto 8px;
  width: 160px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #6a3dff, #ff4d8d);
  color: #fff;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.th-ief-btn[aria-busy="true"] .th-ief-btn-text{ opacity: .6; }
.th-ief-spinner{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  animation: th-ief-spin 0.7s linear infinite;
  display: none;
}
.th-ief-btn[aria-busy="true"] .th-ief-spinner{ display: inline-block; }
@keyframes th-ief-spin { to { transform: rotate(360deg); } }

.th-ief-message{
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}
.th-ief-results{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.th-ief-results li{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.th-ief-label{
  min-width: 110px;
  font-weight: 700;
  color: #5b2cff;
}
.th-ief-value{ word-break: break-word; }
.th-ief-view-icon{
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  border: 1px solid #eee;
  text-decoration: none;
  line-height: 22px;
  text-align: center;
  font-weight: 900;
}
.th-ief-view-icon:after{ content: "👁"; }
@media (max-width: 480px){
  .th-ief-wrap{ padding: 14px; }
  .th-ief-label{ min-width: 86px; }
  .th-ief-btn{ width: 140px; }
}
