/* ==============================================================
   UTILITIES COMPONENT
   Standardized layout and helper classes
   ============================================================== */

/* Alignment */
/* Sizing & Scales */
.icon-xs { width: 12px !important; height: 12px !important; }
.icon-sm { width: 14px !important; height: 14px !important; }
.icon-md { width: 16px !important; height: 16px !important; }
.icon-lg { width: 24px !important; height: 24px !important; }
.icon-xl { width: 32px !important; height: 32px !important; }

.w-32 { width: 32px !important; }
.h-32 { height: 32px !important; }
.w-45 { width: 45px !important; }
.h-45 { height: 45px !important; }
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

.object-cover { object-fit: cover !important; }

.rounded-8 { border-radius: 8px !important; }
.rounded-10 { border-radius: 10px !important; }
.rounded-12 { border-radius: 12px !important; }
.rounded-16 { border-radius: 16px !important; }
.rounded-full { border-radius: 9999px !important; }

/* Alignment */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

/* Flexbox & Grid */
.d-flex, .flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.align-items-center, .items-center { align-items: center !important; }
.justify-content-between, .justify-between { justify-content: space-between !important; }
.justify-content-center, .justify-center { justify-content: center !important; }
.justify-content-end, .justify-end { justify-content: flex-end !important; }
.items-end { align-items: flex-end !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-1 { flex: 1 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-md { gap: 20px !important; }

.grid { display: grid !important; }

/* Display */
.d-none, .hidden { display: none !important; }
.d-block { display: block !important; }

/* Visibility */
.opacity-50 { opacity: 0.5 !important; }
.opacity-0 { opacity: 0 !important; }

/* Sizing */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* Typography */
.small { font-size: 12px !important; }
.large { font-size: 18px !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* Color Helpers */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: var(--white) !important; }

/* Special Backgrounds */
.bg-white-5 { background: rgba(255, 255, 255, 0.05) !important; }
.bg-white-10 { background: rgba(255, 255, 255, 0.1) !important; }
.border-white-5 { border: 1px solid rgba(255, 255, 255, 0.05) !important; padding:20px !important; border-radius:10px !important}
.border-white-10 { border: 1px solid rgba(255, 255, 255, 0.1) !important; padding:20px !important; border-radius:10px !important}
.rounded-lg { border-radius: 12px !important; }
.leading-relaxed { line-height: 1.625 !important; }

/* Margins & Paddings (Mini scale) */
.m-0 { margin: 0 !important; }
.p-0 { padding: 0 !important; }
.p-4 { padding: 1rem !important; }
.p-20 { padding: 20px !important; }
.p-24 { padding: 24px !important; }
.p-30 { padding: 30px !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-6 { margin-top: 2rem !important; }
.mt-8 { margin-top: 2.5rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 2rem !important; }
.mb-8 { margin-bottom: 2.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.w-full { width: 100% !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-widest { letter-spacing: 0.1em !important; }
.text-xs { font-size: 0.75rem !important; }
.text-2xs { font-size: 11px !important; }
.text-sm { font-size: 0.875rem !important; }
.font-bold { font-weight: 700 !important; }
.font-800 { font-weight: 800 !important; }

.grid-column-span-2 { grid-column: span 2 !important; }
.grid-column-span-3 { grid-column: span 3 !important; }
.grid-column-span-4 { grid-column: span 4 !important; }
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.overflow-hidden { overflow: hidden !important; }

.bg-none { background: none !important; }
.border-none { border: none !important; }
.cursor-pointer { cursor: pointer !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.line-height-1 { line-height: 1 !important; }
.ml-auto { margin-left: auto !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-4 { margin-left: 1rem !important; }
.mr-2 { margin-right: 0.5rem !important; }

/* ==============================================================
   SPECIALIZED HELPERS & GLASS COLORS
   ============================================================== */

.bg-primary-glass { background: rgba(var(--primary-rgb), 0.1) !important; }
.bg-blue-glass { background: rgba(59, 130, 246, 0.1) !important; }
.bg-success-glass { background: rgba(16, 185, 129, 0.1) !important; }
.bg-danger-glass { background: rgba(255, 77, 77, 0.1) !important; }
.bg-warning-glass { background: rgba(245, 158, 11, 0.1) !important; }

.text-blue { color: #3b82f6 !important; }

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.no-results {
    text-align: center;
    padding: 60px 40px;
    color: var(--text-muted);
}
