/* Home Welcome Card Styles (moved from inline) */
.prominent-welcome {
  background: linear-gradient(135deg, #00d4ff 0%, #8a2be2 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.18);
}
.prominent-welcome .logo {
  font-size: 2.2em;
  margin-bottom: 10px;
}
.prominent-welcome .home-overview {
  font-size: 1.18em;
  margin-bottom: 18px;
}
.prominent-welcome .text-gray {
  color: #e0e0e0;
}
.prominent-welcome .onboarding-btn {
  font-size: 1.1em;
  margin-bottom: 10px;
}
.prominent-welcome .onboarding-info {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 12px;
}
/* Transaction History Controls */
.tx-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  margin-bottom: 1em;
}
.tx-controls label {
  font-size: 1em;
  margin-right: 0.3em;
}
.tx-controls select,
.tx-controls input[type='date'] {
  padding: 0.3em 0.7em;
  border-radius: 6px;
  border: 1px solid #222;
  background: #181828;
  color: #fff;
}
/* Profile Modal Styles */
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: #181828;
  border-radius: 12px;
  padding: 2em 1.5em;
  min-width: 300px;
  max-width: 90vw;
  color: #fff;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.modal label {
  display: block;
  margin-top: 1em;
  margin-bottom: 0.3em;
  font-size: 1em;
}
.modal input {
  width: 100%;
  padding: 0.5em;
  border-radius: 6px;
  border: 1px solid #222;
  background: #22223a;
  color: #fff;
  margin-bottom: 0.5em;
}
.modal-actions {
  display: flex;
  gap: 1em;
  margin-top: 1.5em;
  justify-content: flex-end;
}
.profile-links {
  margin-top: 0.5em;
  font-size: 0.95em;
}
.profile-links a {
  color: #00d4ff;
  margin-right: 0.7em;
  text-decoration: none;
}
/* Responsive/mobile polish */
@media (max-width: 600px) {
  body {
    font-size: 1em;
    padding: 0;
  }
  .card {
    padding: 1rem;
    margin: 1rem 0.5rem;
    max-width: 100vw;
    border-radius: 10px;
  }
  .btn,
  .btn-primary,
  .btn-outline {
    width: 100%;
    font-size: 1em;
    padding: 0.8em 0;
  }
  .input-full,
  input,
  select,
  textarea {
    font-size: 1em;
    padding: 0.7em;
  }
  h1,
  h2,
  h3 {
    font-size: 1.1em;
  }
  .spinner {
    width: 32px;
    height: 32px;
  }
}

/* Accessibility improvements */
.card,
.btn,
input,
select,
textarea {
  outline-color: #00d4ff;
  outline-width: 2px;
  outline-style: auto;
}
.help-icon:focus,
.help-icon:hover {
  outline: 2px solid #8a2be2;
  background: rgba(138, 43, 226, 0.08);
  border-radius: 50%;
}
.action-btn:focus,
.btn:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}
.status-message[aria-live] {
  border-left: 4px solid #00d4ff;
  padding-left: 0.7em;
}
/* Spinner styles for dashboard loading indicators */
.spinner {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  border: 4px solid #00d4ff;
  border-top: 4px solid #8a2be2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* dashboard-enhanced.css - Minimal restoration for enhanced dashboard */
body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  color: #fff;
  margin: 0;
  min-height: 100vh;
}
.card {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  padding: 2rem;
  max-width: 480px;
}
.btn {
  background: #00d4ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 2em;
  font-size: 1.1em;
  cursor: pointer;
  margin: 0.5em 0;
  transition: background 0.2s;
}
.btn-primary {
  background: #8a2be2;
}
.btn-outline {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
}
.input-full {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 0.7em;
  border-radius: 6px;
  border: 1px solid #222;
  background: #181828;
  color: #fff;
}
.launch-result {
  margin-top: 1em;
  color: #10b981;
}
.whats-new-card {
  background: rgba(138, 43, 226, 0.15);
}
.whats-new-title {
  font-size: 1.3em;
  margin-bottom: 1em;
}
.whats-new-feature {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1em;
}
.whats-new-feature-icon {
  font-size: 2em;
}
.whats-new-feature-desc {
  font-size: 1.05em;
}
.whats-new-actions {
  margin-top: 1.5em;
  text-align: center;
}
.integration-note {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.08);
  color: #dbeafe;
  line-height: 1.5;
}
.result-message {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  line-height: 1.5;
  word-break: break-word;
}
.result-message code {
  font-family: 'Courier New', monospace;
}
.result-info,
.result-success,
.result-warning,
.result-error {
  display: block;
}
.result-info {
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
  color: #e0f2fe;
}
.result-success {
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #d1fae5;
}
.result-warning {
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
  color: #fef3c7;
}
.result-error {
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.12);
  color: #fee2e2;
}
.result-link {
  color: #7dd3fc;
}
.result-link:hover,
.result-link:focus {
  color: #bae6fd;
}
.result-spacer {
  height: 0.6rem;
}
.result-section-title {
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.result-list {
  margin: 0;
  padding-left: 1.2rem;
}
