/* Styling for bulk burn functionality */

/* Rent Estimate Card Styling */
.rent-estimate-card {
  background: linear-gradient(135deg, #2a2d3a 0%, #1e1e2a 100%);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rent-estimate-card h3 {
  margin: 0 0 16px 0;
  color: #4caf50;
  font-size: 1.3rem;
  font-weight: 600;
}

.rent-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.total-estimate, .selected-estimate {
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid #4caf50;
}

.current-selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.estimate-label {
  font-weight: 500;
  color: #e0e0e0;
  font-size: 1.1rem;
}

.estimate-value {
  font-weight: bold;
  font-size: 1.4rem;
  color: #4caf50;
}

.estimate-value.selected {
  color: #ffeb3b;
  text-shadow: 0 0 8px rgba(255, 235, 59, 0.3);
}

.selection-breakdown {
  margin-top: 8px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.estimate-breakdown {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.9rem;
}

.breakdown-item span:first-child {
  color: #b0b0b0;
}

.breakdown-item span:last-child {
  color: #4caf50;
  font-weight: 500;
}

.rent-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rent-details small {
  color: #888;
  font-size: 0.85rem;
}

.selection-note {
  color: #ffeb3b;
  font-weight: 500;
}

.cnft-note {
  color: #ff9800;
  font-weight: 500;
}

.bulk-burn-section {
  background-color: #1e1e2a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bulk-burn-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bulk-burn-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bulk-burn-header h3 {
  margin: 0;
  color: #ff6b6b;
  font-size: 1.2rem;
}

.selection-count {
  background-color: #ff6b6b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.selection-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #ff6b6b;
}

.selection-group span {
  font-weight: 500;
}

.bulk-burn-button {
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bulk-burn-button:hover {
  background-color: #ff3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.bulk-burn-button:disabled {
  background-color: #6c6c6c;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.no-selection-message {
  padding: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-style: italic;
  color: #aaa;
}

/* Styles for asset cards in selection mode */
.token-card, .nft-card {
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.token-card.selected, .nft-card.selected {
  border-color: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.4);
  transform: translateY(-2px);
}

.selection-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}