import styled from 'styled-components' export const DetailedViewWidgetSection = styled.section` padding: 40px; background: linear-gradient(145deg, #e4f6ed, #b5dec9); @media (max-width: 800px) { padding: 20px; } ` export const DetailedViewCacheSection = styled.section` padding: 40px; box-shadow: inset 3px 25px 8px -25px rgba(0, 0, 0, 0.5); @media (max-width: 800px) { padding: 20px; } `