/* Container */
.extrebar-security-verification {
  max-width: 600px;
  margin: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Input group */
.security-input-group {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

/* Input */
.extrebar-security-code {
  flex: 1;
  min-width: 250px;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.extrebar-security-code:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

/* Button */
.extrebar-verify-security {
  padding: 12px 24px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.extrebar-verify-security:hover {
  background: #135e96;
  transform: translateY(-1px);
}
.extrebar-verify-security:disabled {
  background: #a0a0a0;
  cursor: not-allowed;
}

/* Loading */
.extrebar-verification-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  color: #666;
  font-size: 14px;
}
.verification-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #2271b1;
  border-radius: 50%;
  animation: extrebar-spin 1s linear infinite;
}
@keyframes extrebar-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Result */
.extrebar-verification-result {
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid;
  animation: extrebar-fadeIn 0.5s ease;
}
@keyframes extrebar-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.verification-success {
  background: #f0f9ff;
  border-color: #2271b1;
  color: #1e4b72;
}
.verification-error {
  background: #fef2f2;
  border-color: #dc2626;
  color: #7f1d1d;
}
.verification-result-item {
  margin: 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}
.verification-result-item:last-child { border-bottom: none; }
.result-label { font-weight: 600; color: #374151; margin-bottom: 4px; font-size: 14px; }
.result-value { color: #6b7280; font-size: 16px; }

@media (max-width: 600px) {
  .security-input-group { flex-direction: column; }
  .extrebar-security-code { min-width: 100%; }
}

/* Records table */
.extrebar-records-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
}
.extrebar-records-table th,
.extrebar-records-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
  color: #374151;
  vertical-align: top;
  word-break: break-word;
}
.extrebar-records-table th {
  font-weight: 600;
  color: #111827;
  background: #f9fafb;
}
