import styled from 'styled-components'

export const StyledCard = styled.div`
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
`
export const StyledCardHeader = styled.div`
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
`
