/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* TRX Wallet Status Styles */
.status-message {
  padding: 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.status-success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.status-error {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.status-loading {
  background-color: #fef3c7;
  color: #d97706;
  border: 1px solid #fed7aa;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
  .status-success {
    background-color: #14532d;
    color: #bbf7d0;
    border-color: #166534;
  }

  .status-error {
    background-color: #7f1d1d;
    color: #fecaca;
    border-color: #dc2626;
  }

  .status-loading {
    background-color: #92400e;
    color: #fed7aa;
    border-color: #d97706;
  }
}
