/* tweakzen.com — claim flow: amount picker + verification cards */

.res-input-wrap {
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 1rem 1.1rem !important;
  gap: 0.75rem;
  border-radius: 1.25rem !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.res-input-wrap .tz-res-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.res-input-wrap .tz-res-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-input-wrap .tz-res-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.res-input-wrap .tz-res-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.res-input-wrap .tz-res-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.dark .res-input-wrap .tz-res-name { color: #f8fafc; }

.res-input-wrap .tz-res-body {
  flex: 1;
  min-width: 0;
  border: none !important;
  padding: 0 !important;
}

.res-input-wrap > .w-10.flex.items-center { display: none !important; }

select.tz-amount-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tz-amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 480px) {
  .tz-amount-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.tz-amount-btn {
  padding: 0.65rem 0.35rem;
  border-radius: 0.75rem;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.1;
}

.dark .tz-amount-btn {
  background: #0f172a;
  border-color: #334155;
  color: #cbd5e1;
}

.tz-amount-btn:hover {
  border-color: #818cf8;
  color: #4f46e5;
  background: #eef2ff;
}

.dark .tz-amount-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.tz-amount-btn.active {
  border-color: #6366f1;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(99, 102, 241, 0.55);
}

.dark .tz-amount-btn.active {
  border-color: #818cf8;
}

/* Ready to send — resource cards */
#verifResGrid .tz-verif-card {
  border-radius: 1.25rem;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: tzFadeIn 0.35s ease-out;
}

#verifResGrid .tz-verif-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.dark #verifResGrid .tz-verif-icon {
  background: #0f172a;
  border-color: #334155;
}

#verifResGrid .tz-verif-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

#verifResGrid .tz-verif-icon i {
  font-size: 1.35rem;
}

@keyframes tzFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
