/* assets/css/tera-wallet-style.css */

.wallet-terawrapper {
  background-color: #111827;
  color: #fff;
  border-radius: 12px;
  padding: 30px;
  font-family: 'Montserrat', sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.wallet-terawrapper h2,
.wallet-terawrapper h3 {
  color: #f9fafb;
  margin-bottom: 20px;
}

.wallet-balance {
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.wallet-return {
  font-size: 1rem;
  color: #34d399;
  margin-bottom: 30px;
}

.wallet-coin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f2937;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.wallet-coin .info {
  font-size: 1.2rem;
  font-weight: 600;
}

.wallet-coin .info span {
  display: block;
  font-size: 0.9rem;
  color: #9ca3af;
}

.wallet-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.wallet-buttons a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.wallet-buttons .btn-primary {
  background-color: #3b82f6;
  color: white;
}

.wallet-buttons .btn-primary:hover {
  background-color: #2563eb;
}

.wallet-buttons .btn-secondary {
  background-color: #4b5563;
  color: white;
}

.wallet-buttons .btn-secondary:hover {
  background-color: #374151;
}

.wallet-transacoes {
  background-color: #1f2937;
  border-radius: 8px;
  padding: 20px;
}

.wallet-transacoes h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #f9fafb;
}

.transacao-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #374151;
  padding: 10px 0;
  color: #e5e7eb;
}

.transacao-item:last-child {
  border-bottom: none;
}

.transacao-item .detalhes {
  max-width: 70%;
}

.transacao-item .tipo {
  display: block;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.transacao-item .data {
  font-size: 0.9rem;
  color: #9ca3af;
  font-family: 'Montserrat', sans-serif;
}

.transacao-item .valor {
  font-weight: bold;
  font-size: 1.1rem;
  color: #10b981;
  font-family: 'Montserrat', sans-serif;
}
