/* Styles for the Direct Trash Modal */

.direct-trash-modal {
  max-width: 600px;
  width: 90%;
}

.direct-trash-modal .modal-content {
  padding: 20px;
}

.direct-trash-modal .asset-info-card {
  display: flex;
  align-items: center;
  background-color: #1a1a2e;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.direct-trash-modal .asset-image-container {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 15px;
  background-color: #111121;
  display: flex;
  align-items: center;
  justify-content: center;
}

.direct-trash-modal .asset-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.direct-trash-modal .asset-details {
  flex: 1;
}

.direct-trash-modal .asset-details h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: white;
}

.direct-trash-modal .asset-id {
  font-size: 12px;
  color: #a8a8c0;
  word-break: break-all;
  font-family: monospace;
}

.direct-trash-modal .method-selection {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.direct-trash-modal .method-card {
  flex: 1;
  background-color: #1a1a2e;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.direct-trash-modal .method-card:hover {
  border-color: #6b5fe4;
  transform: translateY(-2px);
}

.direct-trash-modal .method-card.selected {
  border-color: #6b5fe4;
  background-color: #25253d;
}

.direct-trash-modal .method-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: white;
}

.direct-trash-modal .method-card p {
  margin-bottom: 25px;
  color: #a8a8c0;
  font-size: 14px;
}

.direct-trash-modal .method-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(107, 95, 228, 0.2);
  color: #6b5fe4;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.direct-trash-modal .method-badge.alternative {
  background-color: rgba(255, 184, 0, 0.2);
  color: #ffb800;
}

.direct-trash-modal .info-box {
  background-color: rgba(107, 95, 228, 0.1);
  border-left: 4px solid #6b5fe4;
  padding: 15px;
  color: #a8a8c0;
  margin-top: 20px;
  border-radius: 4px;
}

.direct-trash-modal .error-message {
  background-color: rgba(255, 76, 76, 0.1);
  border-left: 4px solid #ff4c4c;
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
  color: #ff8c8c;
}

.direct-trash-modal .error-suggestion {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.direct-trash-modal .loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #a8a8c0;
}

.direct-trash-modal .spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(107, 95, 228, 0.3);
  border-radius: 50%;
  border-top-color: #6b5fe4;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}