.storage-dropzone {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
}
.storage-dropzone:hover, .storage-dropzone.dragover {
  border-color: #4a90d9;
  background: #f8f9fa;
}
.storage-dropzone .file-input {
  display: none;
}

.dropzone-content {
  color: #666;
}

.storage-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}
.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-item.primary {
  border: 3px solid #4a90d9;
}
.preview-item .primary-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  background: #4a90d9;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-item .primary-btn {
  position: absolute;
  top: 2px;
  left: 2px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.preview-item:hover .primary-btn {
  opacity: 1;
}
.preview-item button {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.adoption-request-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #1b5e20;
  color: white;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.adoption-request-card .ar-pet {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.adoption-request-card .ar-status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.adoption-request-card .status-PENDING {
  background: #ffc107;
  color: #000;
}
.adoption-request-card .status-APPROVED {
  background: #4caf50;
  color: #fff;
}
.adoption-request-card .status-REJECTED {
  background: #f44336;
  color: #fff;
}
.adoption-request-card .ar-message {
  margin: 0.5rem 0;
  color: #e0e0e0;
  grid-column: 1/-1;
}
.adoption-request-card .ar-date {
  font-size: 0.875rem;
  color: #b0b0b0;
}
.adoption-request-card .ar-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  grid-column: 1/-1;
}
