import { styled } from "@mui/styles";

export const HeaderContainer = styled("div")({
  display: "flex",
  justifyContent: "space-between",
  marginBottom: "10px",
  alignItems: "center",
});
export const TitleContainer = styled("div")({
  fontFamily: "Open Sans",
  fontStyle: "normal",
  fontWeight: "400",
  fontSize: "16px",
  lineHeight: "18px",
  color: "#4A4A4A",
  textAlign: "center",
});

export const ImageStyle = {
  marginTop: "10px",
 
};
export const ButtonStyle = {
  minHeight: "40px",
  minWidth: "40px",
  borderRadius: "50%",
  position: "absolute",
  top: "4px",
  right: "11px",
};
