/* Width utility classes */
.w-100 { width: 100% !important; }
.w-75 { width: 75% !important; }
.w-50 { width: 50% !important; }
.w-25 { width: 25% !important; }
.w-auto { width: auto !important; }

/* Mobile width utilities */
@media (max-width: 576px) {
    .w-sm-100 { width: 100% !important; }
}

/* Responsive width utilities */
.mw-100 { max-width: 100% !important; }
.min-vw-100 { min-width: 100vw !important; }

/* Height utilities */
.h-100 { height: 100% !important; }
.mh-100 { max-height: 100% !important; }
