/* ================================
   VERIFICATION MODAL STYLES
================================ */

/* Tab container */
.method-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

/* Tab button */
.method-tab {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #323234;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Active tab */
.method-tab.active {
  background: #eba030;
  color: black;
}

/* Dropzone hover effect */
.dropzone-wrapper label:hover {
  border-color: #eba030;
  background-color: rgba(235, 160, 48, 0.1);
}
