/**
 * ru-openrouter.ru - Утилитарные классы
 * Вспомогательные классы для замены инлайн стилей
 */

/* ===== Spacing ===== */
.mt-0 { margin-top: 0 !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-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !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-5 { margin-bottom: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-3 { padding-top: 1rem !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* ===== Display ===== */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

/* ===== Flexbox ===== */
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: start !important; }
.align-items-flex-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-shrink-0 { flex-shrink: 0 !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-5 { gap: 3rem !important; }

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

.text-muted { color: var(--text-muted, #6c757d) !important;}
.text-muted-2 { color: var(--text-muted, #6c757d) !important;
    display: grid;
    justify-items: center;
 }
.text-primary { color: var(--primary-color, #2563eb) !important; }
.text-success { color: var(--success-color, #16a34a) !important; }
.text-danger { color: var(--danger-color, #dc2626) !important; }
.text-warning { color: var(--warning-color, #f59e0b) !important; }

.fw-normal { font-weight: 400 !important; }
.fw-bold { font-weight: 700 !important; }

.fs-sm { font-size: 0.875rem !important; }
.fs-base { font-size: 1rem !important; }
.fs-lg { font-size: 1.125rem !important; }
.fs-xl { font-size: 1.25rem !important; }
.fs-2xl { font-size: 1.5rem !important; }
.fs-3xl { font-size: 2.5rem !important; }

.white-space-nowrap { white-space: nowrap !important; }
.user-select-all { user-select: all !important; }
.letter-spacing-1 { letter-spacing: 1px !important; }
.letter-spacing-4 { letter-spacing: 4px !important; }

/* ===== Colors ===== */
.bg-light { background: #f8f9fa !important; }
.bg-white { background: #ffffff !important; }
.bg-primary { background: var(--primary-color, #2563eb) !important; }
.bg-success { background: var(--success-color, #16a34a) !important; }
.bg-danger { background: var(--danger-color, #dc2626) !important; }

/* ===== Sizing ===== */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }
.w-50 { width: 50% !important; }
.max-w-sm { max-width: 24rem !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-lg { max-width: 32rem !important; }
.max-w-xl { max-width: 36rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-4xl { max-width: 56rem !important; }

/* ===== Position ===== */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }

/* ===== Borders ===== */
.border { border: 1px solid var(--border-color, #e5e7eb) !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--border-color, #e5e7eb) !important; }
.border-bottom { border-bottom: 1px solid var(--border-color, #e5e7eb) !important; }
.border-left { border-left: 1px solid var(--border-color, #e5e7eb) !important; }
.border-right { border-right: 1px solid var(--border-color, #e5e7eb) !important; }
.rounded { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* ===== Shadow ===== */
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important; }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important; }
.shadow-none { box-shadow: none !important; }

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

/* ===== Cursor ===== */
.cursor-pointer { cursor: pointer !important; }

/* ===== Word Break ===== */
.break-all { word-break: break-all !important; }
.break-word { word-break: break-word !important; }

/* ===== Visibility ===== */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* ===== Opacity ===== */
.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }
