/* Generic utility classes extracted from inline styles */

/* Sizing */
.full-viewport { width: 100vw !important; max-width: 100vw !important; }
.full-width { width: 100% !important; max-width: 100% !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }
.max-w-150 { max-width: 150px !important; }

/* Spacing */
.no-margin { margin: 0 !important; }
.no-padding { padding: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }

/* Positioning */
.pos-relative { position: relative !important; }
.pos-absolute { position: absolute !important; }
.full-bleed-center { margin-left: calc(-50vw + 50%) !important; margin-right: calc(-50vw + 50%) !important; position: relative !important; left: 50% !important; transform: translateX(-50%) !important; }
.top-0 { top: 0 !important; }
.left-0 { left: 0 !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Background helpers */
.bg-cover-center { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }

/* Animation */
.anim-duration-20s { animation-duration: 20s !important; }
.anim-ease-in-out { animation-timing-function: ease-in-out !important; }

/* SVG helpers */
.stroke-2 { stroke-width: 2 !important; }
