/* ============================================
   Inline Helpers - Utility Classes
   Replacing inline styles throughout the app
   ============================================ */

/* Language Check Icons */
.lang-check-icon {
    margin-left: auto;
    transition: opacity 0.3s;
}

/* Theme Toggle Icons */
.theme-icon-hidden {
    display: none;
}

/* Scan QR Button in Navbar */
.nav-scan-qr-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 600;
}

.nav-scan-qr-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

/* Landing Page Icons */
.landing-icon-primary {
    color: #2563eb;
}

:root[data-theme="dark"] .landing-icon-primary {
    color: #60a5fa;
}

/* Magazine Dashboard */
.magazine-card-clickable {
    cursor: pointer;
}

.magazine-icon-primary {
    color: #2563eb;
    font-size: 1.5rem;
}

:root[data-theme="dark"] .magazine-icon-primary {
    color: #60a5fa;
}

/* Magazine Editor */
.editor-bg-section {
    background: #f8f9fa;
}

:root[data-theme="dark"] .editor-bg-section {
    background: #1e293b;
}

.editor-icon-muted {
    font-size: 0.875rem;
}

.editor-font-select {
    width: 140px;
    font-size: 0.875rem;
    cursor: pointer;
}

.editor-color-input {
    width: 40px;
    height: 32px;
    cursor: pointer;
}

.editor-badge-colors {
    font-size: 0.7rem;
}

.editor-display-control {
    display: block;
}

.editor-display-none {
    display: none;
}

/* Magazine Preview Gradient */
.magazine-cover-old-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.magazine-preview-print-btn {
    width: 60px;
    height: 60px;
}

/* Badge Colors */
.badge-doctor {
    background-color: #9333ea !important;
    color: white;
}

:root[data-theme="dark"] .badge-doctor {
    background-color: #a855f7 !important;
}

/* Status Icons */
.status-icon-approved {
    color: #10b981;
    font-size: 1.2rem;
}

.status-icon-pending {
    color: #f59e0b;
    font-size: 1.2rem;
}

:root[data-theme="dark"] .status-icon-approved {
    color: #34d399;
}

:root[data-theme="dark"] .status-icon-pending {
    color: #fbbf24;
}

/* Icon Width Helpers */
.icon-w-20 {
    width: 20px;
}

/* Icon Colors */
.icon-color-warning {
    color: #f59e0b;
}

.icon-color-info {
    color: #3b82f6;
}

:root[data-theme="dark"] .icon-color-warning {
    color: #fbbf24;
}

:root[data-theme="dark"] .icon-color-info {
    color: #60a5fa;
}

/* Table Column Widths */
.col-actions-100 {
    width: 100px;
    text-align: center;
}

.col-status-80 {
    width: 80px;
    text-align: center;
}

/* Stat Card Min Height */
.stat-card-min-height {
    min-height: 120px;
}

/* Page Header with White Text */
.page-header-white {
    color: white;
}

.page-header-white h2 {
    color: white;
}

.page-header-white .text-muted {
    margin-bottom: 2px;
    color: white !important;
}

:root[data-theme="dark"] .page-header-white {
    color: #f1f5f9;
}

:root[data-theme="dark"] .page-header-white h2 {
    color: #f1f5f9;
}

:root[data-theme="dark"] .page-header-white .text-muted {
    color: #cbd5e1 !important;
}

/* Magazine Article Content Alignment */
.text-align-left {
    text-align: left;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.text-align-justify {
    text-align: justify;
}
