/**
 * DeMV Platform - Cryptocurrency Selector Styles
 * 
 * Cyberpunk-themed styling for the cryptocurrency selector component
 */

.crypto-selector-container {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 204, 0.5);
  border-radius: 4px;
  background-color: rgba(18, 18, 24, 0.7);
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

.crypto-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.crypto-option {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.crypto-option:last-child {
  border-bottom: none;
}

.crypto-option:hover {
  background-color: rgba(0, 255, 204, 0.1);
}

.crypto-option.selected {
  background-color: rgba(0, 255, 204, 0.15);
  box-shadow: inset 0 0 10px rgba(0, 255, 204, 0.2);
}

.crypto-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.crypto-option-icon img {
  max-width: 100%;
  max-height: 100%;
}

.crypto-option-details {
  flex: 1;
}

.crypto-option-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.crypto-option-symbol {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.crypto-option-value {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: #00ffcc;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.crypto-equivalent {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background-color: rgba(18, 18, 24, 0.5);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 4px;
}

.crypto-equivalent:empty {
  display: none;
}

.crypto-equivalent-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 0.75rem;
}

.crypto-equivalent-value {
  display: flex;
  align-items: center;
}

.crypto-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.crypto-amount {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.error-message {
  padding: 1rem;
  color: #ff3e3e;
  text-align: center;
  font-style: italic;
}
