/* Image Edit Modal Styles */
.image-edit-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
}

.edit-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
}

.edit-btn i {
  font-size: 18px;
}

.delete-btn {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  border: 2px solid transparent;
}

.delete-btn:hover {
  background: linear-gradient(135deg, #ff3742, #ff2f3e);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.delete-btn:active {
  transform: translateY(0);
}

.bg-remove-btn {
  background: linear-gradient(135deg, #5352ed, #3742fa);
  color: white;
  border: 2px solid transparent;
}

.bg-remove-btn:hover {
  background: linear-gradient(135deg, #3742fa, #2f32fa);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(83, 82, 237, 0.3);
}

.bg-remove-btn:active {
  transform: translateY(0);
}

.edit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Dark theme styling for modal */
#imageEditModal {
  color: #fff;
}

#imageEditModal .modal-header {
  background: linear-gradient(135deg, #2c2c54, #40407a);
  border-bottom: 1px solid #444;
}

#imageEditModal .modal-body {
  background: #1a1a2e;
  border-radius: 0 0 8px 8px;
}

/* Responsive design */
@media (max-width: 480px) {
  .edit-btn {
    font-size: 14px;
    padding: 10px 15px;
    min-height: 44px;
  }
  
  .edit-btn i {
    font-size: 16px;
  }
  
  .image-edit-buttons {
    gap: 10px;
    padding: 15px 0;
  }
}
