/**
 * Gnet Application Styles
 */

/* CSS Variables for consistent design system */
:root {
    /* Border Radius System */
    --radius-sm: 4px;    /* Small elements, badges */
    --radius-md: 8px;    /* Buttons, inputs, cards */
    --radius-lg: 12px;   /* Large cards, containers */
    --radius-pill: 999px; /* Pill-shaped buttons */

    /* Gnet brand blue – used throughout the Router Wizard */
    --color-oxblue: #16a34a;

    /* Modern Color Palette for ISP */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --info-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    /* Sidebar Colors – light panel */
    --sidebar-bg: #ffffff;
    --sidebar-hover: #f1f5f9;
    --sidebar-active: #2563eb;
    --sidebar-text: #374151;
    --sidebar-text-muted: #6b7280;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Base styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Layout */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 20px;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.logo a:hover {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-nav a:hover {
    color: #007bff;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
}

.header-icon-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.header-icon-btn:hover {
    background: #f1f5f9;
    color: #374151;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-content {
    padding: 20px 0;
    min-height: calc(100vh - 200px);
}

.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-content p {
    margin: 0;
}

.auth-container {
    max-width: 500px;
    margin: 50px auto;
}

/* Dashboard Layout with Sidebar */
.dashboard-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dashboard-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right {
    display: flex;
    align-items: center;
}

.sidebar-toggle {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.dashboard-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.sidebar {
    width: 260px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 60px);
    position: sticky;
    top: 60px;
    border-right: 1px solid #e5e7eb;
    box-shadow: none;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.sidebar.collapsed {
    width: 0;
    overflow: hidden;
}

.sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-collapse-btn {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sidebar-collapse-btn:hover {
    background: #f1f5f9;
    color: #374151;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111827;
}

.sidebar-header h3 i {
    color: var(--sidebar-active);
    font-size: 20px;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-tools {
    position: sticky;
    top: 0;
    z-index: 3;
    padding: 8px 8px 6px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-search-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.sidebar-search-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d4dde7;
    border-radius: 8px;
    background: #ffffff;
    padding: 0 7px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.sidebar-search-wrap:focus-within {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

.sidebar-search-wrap i {
    color: #64748b;
    font-size: 12px;
}

.sidebar-search-input {
    flex: 1;
    height: 30px;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 12px;
}

.sidebar-search-input::placeholder {
    color: #94a3b8;
}

.sidebar-search-clear {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar-search-clear:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.sidebar-search-hint {
    margin: 4px 1px 0;
    color: #64748b;
    font-size: 10px;
    min-height: 14px;
}

.sidebar-search-hint.has-query {
    color: #475569;
    font-weight: 600;
}

.sidebar-search-hint kbd {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #dce5ef;
    border-bottom-width: 2px;
    border-radius: 4px;
    font-size: 9px;
    padding: 0 5px;
    font-family: inherit;
}

.sidebar-search-empty {
    margin: 6px 1px 0;
    padding: 6px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #64748b;
    font-size: 11px;
    background: #f8fafc;
}

.sidebar-recent {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #dbe3ec;
}

.sidebar-favorites {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #dbe3ec;
}

.sidebar-recent-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.sidebar-recent-head span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 700;
}

.sidebar-recent-clear {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.sidebar-recent-clear:hover {
    color: #334155;
}

.sidebar-recent-list {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-recent-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 100%;
}

.sidebar-favorite-item {
    cursor: grab;
}

.sidebar-favorite-item.is-dragging {
    opacity: 0.5;
}

.sidebar-recent-pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    border: 1px solid #dbeafe;
    background: #f8fbff;
    border-radius: 999px;
    padding: 2px 7px;
    text-decoration: none;
    color: #0f4c81;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-recent-pill:hover {
    background: #eaf2ff;
    color: #1d4ed8;
}

.sidebar-recent-pin {
    width: 18px;
    height: 18px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #ffffff;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    cursor: pointer;
    padding: 0;
}

.sidebar-recent-pin:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.sidebar-recent-pin.is-active {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.sidebar-recent-pin.is-remove {
    border-color: #fecaca;
    color: #b91c1c;
    background: #fff1f2;
}

.sidebar-recent-pin.is-remove:hover {
    border-color: #fca5a5;
    color: #991b1b;
    background: #ffe4e6;
}

.sidebar-favorite-move {
    border-color: #dbeafe;
    color: #1e40af;
    background: #f8fbff;
}

.sidebar-favorite-move:hover {
    border-color: #bfdbfe;
    color: #1d4ed8;
    background: #eff6ff;
}

.sidebar-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-section-title {
    padding: 10px 14px 4px;
}

.sidebar-section-title .text {
    color: var(--sidebar-text-muted);
    font-size: 9.8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    color: var(--sidebar-text);
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 8px;
    position: relative;
    border-radius: 0;
}

.sidebar-menu a:hover {
    background: var(--sidebar-hover);
    padding-left: 18px;
    color: #111827;
}

.sidebar-menu li.active > a {
    background: #eff6ff;
    border-left: 3px solid var(--sidebar-active);
    color: #1d4ed8;
    font-weight: 600;
}

.sidebar-menu li.active > a .icon {
    color: var(--sidebar-active);
}

.sidebar-menu .icon {
    font-size: 14px;
    min-width: 18px;
    text-align: center;
    transition: all 0.2s;
    color: #6b7280;
}

.sidebar-menu .text {
    font-size: 12.6px;
    font-weight: 500;
    flex: 1;
}

.sidebar-badge {
    margin-left: auto;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

@media (max-width: 1200px) {
    .sidebar-search-hint {
        display: none;
    }
}

.sidebar-menu .has-submenu .submenu-arrow {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.sidebar-menu .has-submenu.open .submenu-arrow,
.sidebar-menu .has-submenu.active .submenu-arrow {
    transform: rotate(180deg);
}

.sidebar-menu .submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 4px 0 6px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-menu .has-submenu.open .submenu,
.sidebar-menu .has-submenu.active .submenu {
    display: block;
}

.sidebar-menu .submenu li {
    margin: 0;
}

.sidebar-menu .submenu a {
    font-size: 13px;
    padding: 8px 20px 8px 48px;
    gap: 8px;
    color: #4b5563;
}

.sidebar-menu .submenu a:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.sidebar-menu .submenu li.active > a {
    border-left: 3px solid var(--sidebar-active);
    background: #eff6ff;
    color: #1d4ed8;
}

.sidebar-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px 20px;
}

.sidebar-footer-mini {
    padding: 4px 20px 14px;
}

.sidebar-footer-mini .text {
    color: #9ca3af;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.sidebar-quicklinks {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.sidebar-quicklinks a {
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-quicklinks a:hover {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
    padding-left: 0;
}

/* Sidebar profile block at top */
.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
}

.sidebar-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-profile-info {
    flex: 1;
    min-width: 0;
}

.sidebar-profile-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-profile-role {
    font-size: 11px;
    color: #6b7280;
    margin-top: 1px;
}

/* Sidebar info card at the bottom */
.sidebar-info-card {
    margin: 16px 12px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #dbeafe;
}

.sidebar-info-card p {
    margin: 0 0 8px;
    font-size: 12px;
    color: #374151;
    font-weight: 600;
}

.sidebar-info-card small {
    display: block;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
}

.dashboard-content {
    flex: 1;
    padding: 28px;
    overflow-y: auto;
    background: #f8fafc;
}

.dashboard-page {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1e2836;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid #007bff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 0 0 0 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card-primary {
    border-left-color: #007bff;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.stat-card-success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f1fdf4 100%);
}

.stat-card-warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #ffffff 0%, #fffcf0 100%);
}

.stat-card-info {
    border-left-color: #17a2b8;
    background: linear-gradient(135deg, #ffffff 0%, #f0fbfd 100%);
}

.stat-icon {
    font-size: 42px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-content h3 {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.4;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.dashboard-section {
    min-width: 0;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    font-weight: 500;
}

.action-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.action-icon {
    font-size: 36px;
    transition: transform 0.3s;
}

.action-btn:hover .action-icon {
    transform: scale(1.1);
}

/* Status List */
.status-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.2s;
}

.status-item:hover {
    transform: translateX(4px);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.status-dot.status-success {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.status-dot.status-warning {
    background: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.status-dot.status-danger {
    background: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.status-dot.status-info {
    background: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.2);
}

.status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.status-info strong {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.status-info span {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

/* Management List */
.management-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.management-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.2s;
    gap: 15px;
}

.management-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.item-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-content strong {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.item-content span {
    font-size: 12px;
    color: #7f8c8d;
}

.item-arrow {
    font-size: 18px;
    color: #7f8c8d;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: #f8f9fa;
    transition: all 0.2s;
}

.activity-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-content strong {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 600;
}

.activity-content span {
    font-size: 12px;
    color: #6c757d;
}

.activity-time {
    font-size: 11px;
    color: #95a5a6;
    font-style: italic;
}

.user-name {
    font-weight: 500;
    margin-right: 10px;
}

.btn-logout {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover {
    background: #fecaca;
}

/* Homepage Styles */
.homepage {
    background: #fff;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 15px 0;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

.tech-section {
    padding: 60px 0;
    background: #fff;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.tech-item {
    padding: 20px;
}

.tech-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.tech-item p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cta-content p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3,
.col-md-4,
.col-md-6,
.col-md-9,
.col-md-12 {
    padding: 0 15px;
    flex-basis: 100%;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex-basis: 25%;
    }
    .col-md-4 {
        flex-basis: 33.333%;
    }
    .col-md-6 {
        flex-basis: 50%;
    }
    .col-md-9 {
        flex-basis: 75%;
    }
    .col-md-12 {
        flex-basis: 100%;
    }
}

/* Card component */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    padding: 24px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 0;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
}

.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
}

.badge-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #63408a 100%);
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border-color: transparent;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #4e555b 100%);
}

.btn-success {
    color: #fff;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-color: transparent;
}

.btn-danger {
    color: #fff;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: transparent;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table th,
.table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: background-color 0.2s;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: var(--radius-md);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #667eea;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* Navigation */
.settings-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.settings-nav li {
    margin-bottom: 10px;
}

.settings-nav a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.settings-nav a:hover {
    background-color: #f8f9fa;
}

.settings-nav a.active {
    background-color: #007bff;
    color: #fff;
}

/* Utilities */
.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

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

/* Additional Utility Classes */
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-30 { margin-bottom: 30px; }

.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-center { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.flex-between { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }

/* Validation */
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.is-invalid {
    border-color: #dc3545;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(30, 40, 54, 0.7);
    backdrop-filter: blur(4px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-dialog {
    position: relative;
    width: auto;
    max-width: 500px;
    margin: 20px;
    animation: slideInUp 0.3s;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.modal-header .close {
    padding: 0;
    background-color: transparent;
    border: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #6c757d;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-header .close:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #dc3545;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 20px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 20px;
    border-top: 2px solid #f0f0f0;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Sidebar - fixed overlay on mobile */
    .sidebar {
        position: fixed;
        z-index: 1100;
        top: 60px;
        left: 0;
        width: 260px;
        height: calc(100vh - 60px);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar:not(.collapsed) {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    }

    /* Sidebar backdrop overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1099;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .sidebar-tools {
        position: static;
    }

    /* Grids to single column */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: 1fr 1fr;
    }

    /* Typography scaling */
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* Dashboard content spacing */
    .dashboard-content {
        padding: 15px;
    }

    .page-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .page-header .subtitle {
        font-size: 13px;
    }

    /* Tables - horizontal scroll on mobile */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table th,
    .table td {
        padding: 10px 8px;
        font-size: 13px;
        white-space: nowrap;
    }

    .table thead th {
        font-size: 11px;
    }

    /* Header adjustments */
    .dashboard-header-content {
        padding: 0 12px;
    }

    .user-name {
        display: none;
    }

    .btn-logout {
        font-size: 12px;
        padding: 4px 10px;
    }

    /* Cards reduced spacing */
    .card {
        padding: 16px;
        margin-bottom: 16px;
    }

    .card-header {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    /* Stat cards */
    .stat-card {
        padding: 16px;
        gap: 12px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .stat-number {
        font-size: 22px;
    }

    /* Buttons */
    .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 10px 22px;
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Forms */
    .form-group {
        margin-bottom: 12px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* Modal adjustments for mobile */
    .modal-dialog {
        margin: 10px;
        max-width: calc(100vw - 20px);
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }

    .modal-title {
        font-size: 17px;
    }

    /* Feature cards */
    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 36px;
    }

    /* CTA section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    /* Header navigation (guest) */
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 13px;
    }

    /* Revenue summary */
    .revenue-summary {
        grid-template-columns: 1fr;
    }

    /* Settings nav */
    .settings-nav a {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Quick actions */
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .action-btn {
        padding: 16px 10px;
        font-size: 12px;
    }

    .action-icon {
        font-size: 28px;
    }
}

/* Customer Detail Page Styles */
.customer-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item label {
    font-weight: 600;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.detail-item span {
    font-size: 14px;
    color: #333;
}

.wallet-balance {
    text-align: center;
    padding: 20px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    margin: 10px 0;
}

.action-buttons .btn {
    text-align: left;
}

.action-buttons .btn i {
    margin-right: 8px;
}

/* Tabs */
.tabs {
    width: 100%;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #007bff;
}

.tab-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Page Header */
.page-header {
    margin-bottom: 20px;
}

.page-header h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Row and Column Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-left: 10px;
    padding-right: 10px;
}

.col-md-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
    padding-left: 10px;
    padding-right: 10px;
}

/* Subscription Item */
.subscription-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.subscription-item h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

/* Device Info Grid */
.device-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Utilities */
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.text-muted {
    color: #6c757d;
}

.icon-arrow-left::before {
    content: "←";
    margin-right: 5px;
}

.icon-plus::before {
    content: "+";
}

.icon-credit-card::before {
    content: "💳";
}

.icon-edit::before {
    content: "✎";
}

.icon-lock::before {
    content: "🔒";
}

.icon-calendar::before {
    content: "📅";
}

.icon-refresh::before {
    content: "↻";
}

.icon-message::before {
    content: "💬";
}

.icon-dollar::before {
    content: "💰";
}

.icon-check::before {
    content: "✓";
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #000;
    opacity: 0.5;
}

.close-btn:hover {
    opacity: 0.8;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .customer-details-grid {
        grid-template-columns: 1fr;
    }
    
    .device-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Row spacing on mobile */
    .row {
        margin: 0 -8px;
    }

    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-9,
    .col-md-12 {
        padding: 0 8px;
    }

    /* Tab buttons - scrollable on mobile */
    .tab-buttons {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 0;
    }

    .tab-btn {
        flex-shrink: 0;
        padding: 10px 14px;
        font-size: 13px;
    }

    /* Balance amount */
    .balance-amount {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-icon {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 18px;
    }

    .stat-content h3 {
        font-size: 11px;
    }

    /* Header */
    .dashboard-header {
        height: 50px;
    }

    .sidebar {
        top: 50px;
        height: calc(100vh - 50px);
    }

    .sidebar-overlay {
        top: 50px;
    }

    .logo a {
        font-size: 18px;
    }

    /* Modal full-width on very small screens */
    .modal-dialog {
        margin: 5px;
        max-width: calc(100vw - 10px);
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 12px;
    }

    /* Dashboard content minimal padding */
    .dashboard-content {
        padding: 10px;
    }

    /* Table compact mode */
    .table th,
    .table td {
        padding: 8px 6px;
        font-size: 12px;
    }

    /* Hero on very small screens */
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Features */
    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 16px;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

    /* Action buttons full width */
    .action-btn {
        padding: 12px 8px;
        gap: 8px;
    }

    .action-icon {
        font-size: 24px;
    }

    /* Management items */
    .management-item {
        padding: 10px;
        gap: 10px;
    }

    .management-item .item-icon {
        font-size: 20px;
    }

    /* Activity items */
    .activity-item {
        gap: 8px;
        padding: 8px;
    }

    .activity-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Status items */
    .status-info strong {
        font-size: 12px;
    }

    .status-info span {
        font-size: 11px;
    }

    /* Revenue items */
    .revenue-item {
        padding: 12px;
    }

    .revenue-item .revenue-value {
        font-size: 1.2rem;
    }
}

/* Dashboard-specific enhancements */
.stat-card-danger {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #ffffff 0%, #fff0f0 100%);
}

.stat-card-highlight {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stat-card-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.stat-card-highlight .stat-content h3,
.stat-card-highlight .stat-label,
.stat-card-highlight .stat-number {
    color: white;
    position: relative;
    z-index: 1;
}

.stat-number-large {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-trend {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.stat-trend.up {
    color: #28a745;
}

.stat-trend.down {
    color: #dc3545;
}

/* Section spacing utilities */
.todays-earnings-section {
    margin-bottom: 2rem;
}

.todays-earnings-section .stat-icon {
    font-size: 3rem;
}

.earnings-section {
    margin: 2rem 0;
}

.earnings-section .stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.earnings-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.earnings-section .stat-content h3,
.earnings-section .stat-label,
.earnings-section .stat-number {
    color: white;
    position: relative;
    z-index: 1;
}

.revenue-report-section {
    margin: 2rem 0;
}

/* Revenue Report Styles */
.revenue-chart-container {
    padding: 1rem 0;
}

/* -------------------------------------------------------------------------- */
/* Modern app shell and design tokens                                          */
/* -------------------------------------------------------------------------- */
/*
 * Source-of-truth scope:
 * - Global shell, typography, forms, tables, modals, alerts, badges.
 * - Do not place ISP menu structure styles here; use public/assets/css/sidebar.css.
 * - Do not place dashboard-only layout rules here; use public/assets/css/dashboard-system.css.
 */

:root {
    --gnet-font-heading: 'Manrope', 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --gnet-font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --gnet-bg: #eef4fb;
    --gnet-bg-soft: #f8fbff;
    --gnet-bg-elevated: #ffffff;
    --gnet-border: #d9e6f2;
    --gnet-border-strong: #c3d5e5;
    --gnet-text: #102030;
    --gnet-text-muted: #64748b;
    --gnet-brand: #0f6d8f;
    --gnet-brand-strong: #0b4f69;
    --gnet-brand-soft: #dff2fb;
    --gnet-shadow: 0 10px 28px rgba(11, 35, 55, 0.08);
    --gnet-shadow-hover: 0 18px 36px rgba(11, 35, 55, 0.12);
    --gnet-radius-sm: 10px;
    --gnet-radius-md: 16px;
    --gnet-radius-lg: 24px;
}

html[data-theme='dark'] {
    --gnet-bg: #0b1220;
    --gnet-bg-soft: #101a2d;
    --gnet-bg-elevated: #121d32;
    --gnet-border: #22314b;
    --gnet-border-strong: #2d425f;
    --gnet-text: #e5eef7;
    --gnet-text-muted: #9bb0c6;
    --gnet-brand: #53c5f5;
    --gnet-brand-strong: #8ad7ff;
    --gnet-brand-soft: rgba(83, 197, 245, 0.14);
    --gnet-shadow: 0 14px 36px rgba(2, 6, 23, 0.44);
    --gnet-shadow-hover: 0 20px 44px rgba(2, 6, 23, 0.52);
}

body {
    font-family: var(--gnet-font-body);
    color: var(--gnet-text);
    background:
        radial-gradient(circle at top left, rgba(15, 109, 143, 0.08), transparent 34%),
        radial-gradient(circle at bottom right, rgba(11, 79, 105, 0.06), transparent 34%),
        var(--gnet-bg);
}

.dashboard-layout {
    min-height: 100vh;
    background: transparent;
}

.dashboard-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    min-height: 72px;
    height: auto;
    backdrop-filter: blur(14px);
    background: color-mix(in srgb, var(--gnet-bg-elevated) 88%, transparent);
    border-bottom: 1px solid var(--gnet-border);
    box-shadow: 0 10px 28px rgba(11, 35, 55, 0.05);
}

.dashboard-header-content {
    min-height: 72px;
    padding: 0 20px;
    gap: 18px;
}

.header-left,
.header-right,
.header-brand,
.header-brand-copy,
.header-context,
.user-menu {
    display: flex;
    align-items: center;
}

.header-left {
    gap: 14px;
}

.header-brand {
    gap: 12px;
    min-width: 0;
}

.header-brand-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header-brand-copy strong,
.header-context strong {
    color: var(--gnet-text);
    font-family: var(--gnet-font-heading);
    font-size: 0.98rem;
    line-height: 1.1;
}

.header-brand-copy small,
.header-context-label {
    color: var(--gnet-text-muted);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo a {
    font-family: var(--gnet-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--gnet-brand);
}

.sidebar-toggle,
.header-icon-btn,
.header-notif-btn,
.btn-logout {
    border-radius: 999px;
}

.sidebar-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gnet-border);
    background: var(--gnet-bg-elevated);
    box-shadow: var(--gnet-shadow);
}

.sidebar-toggle:hover {
    border-color: var(--gnet-border-strong);
    background: var(--gnet-bg-soft);
}

.sidebar-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gnet-text);
}

.header-right {
    gap: 12px;
}

.header-context {
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding: 0 8px;
}

.header-notifications {
    margin-right: 0;
}

.header-notif-btn,
.header-icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gnet-border);
    background: var(--gnet-bg-elevated);
    color: var(--gnet-text-muted);
    box-shadow: var(--gnet-shadow);
}

.header-notif-btn:hover,
.header-icon-btn:hover {
    background: var(--gnet-bg-soft);
    color: var(--gnet-brand-strong);
    border-color: var(--gnet-border-strong);
}

.user-menu {
    gap: 10px;
}

.user-name {
    color: var(--gnet-text);
    font-weight: 700;
}

.user-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gnet-brand) 0%, var(--gnet-brand-strong) 100%);
    box-shadow: var(--gnet-shadow);
}

.btn-logout {
    border: 1px solid #d7e3ef;
    background: var(--gnet-bg-elevated);
    color: var(--gnet-text);
    min-height: 42px;
    padding: 0 14px;
    font-weight: 700;
}

.btn-logout:hover {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #f7c8c8;
}

.dashboard-container {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 72px);
    overflow: clip;
}

.sidebar {
    width: 280px;
    background: color-mix(in srgb, var(--gnet-bg-elevated) 96%, transparent);
    border-right: 1px solid var(--gnet-border);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.3);
}

.sidebar-overlay {
    background: rgba(3, 12, 23, 0.42);
    backdrop-filter: blur(2px);
}

.dashboard-content {
    flex: 1;
    min-width: 0;
    padding: 24px;
    background: transparent;
}

.app-page-chrome {
    display: grid;
    gap: 16px;
    max-width: 1560px;
    margin: 0 auto;
}

.app-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 2px 0;
    color: var(--gnet-text-muted);
    font-size: 0.88rem;
}

.app-breadcrumb a,
.app-breadcrumb-current {
    color: var(--gnet-text);
    font-weight: 700;
}

.app-breadcrumb a:hover {
    color: var(--gnet-brand-strong);
}

.app-breadcrumb-sep {
    opacity: 0.5;
}

.app-content-slot {
    display: block;
}

.app-content-slot .card,
.app-content-slot .panel,
.app-content-slot .chart-shell,
.app-content-slot .stat-item,
.app-content-slot .focus-strip,
.app-content-slot .utility-banner,
.app-content-slot .context-card {
    border-radius: 14px;
    border: 1px solid var(--gnet-border);
    background: var(--gnet-bg-elevated);
    box-shadow: var(--gnet-shadow);
}

.app-content-slot .card-header,
.app-content-slot .panel-head,
.app-content-slot .focus-head,
.app-content-slot .utility-head {
    padding: 0.62rem 0.86rem;
    border-bottom: 1px solid color-mix(in srgb, var(--gnet-border) 85%, transparent);
}

.app-content-slot .card-body,
.app-content-slot .panel-body,
.app-content-slot .focus-body,
.app-content-slot .utility-body,
.app-content-slot .chart-wrap,
.app-content-slot .kpi-block {
    padding: 0.76rem 0.86rem;
}

.app-content-slot .kpi-grid,
.app-content-slot .dashboard-grid,
.app-content-slot .stats-grid,
.app-content-slot .quick-actions,
.app-content-slot .management-list,
.app-content-slot .status-list {
    gap: 0.72rem;
}

.app-content-slot .card h3,
.app-content-slot .panel h3,
.app-content-slot .card h4,
.app-content-slot .panel h4 {
    margin-bottom: 0.38rem;
    line-height: 1.25;
}

.app-content-slot .card p,
.app-content-slot .panel p {
    margin-bottom: 0.4rem;
}

.app-content-slot .empty,
.app-content-slot .empty-state,
.app-content-slot .empty-state-message {
    padding: 1.2rem 0.8rem;
}

.table-responsive,
.table-container {
    border-radius: var(--gnet-radius-md);
    border: 1px solid var(--gnet-border);
    background: var(--gnet-bg-elevated);
    box-shadow: var(--gnet-shadow);
}

.table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--gnet-bg-soft);
    color: var(--gnet-text);
}

.table tbody tr:hover {
    background: color-mix(in srgb, var(--gnet-brand-soft) 55%, transparent);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive .table {
    min-width: 680px;
}

.table td,
.table th {
    vertical-align: middle;
    padding: 0.58rem 0.7rem;
}

.table .btn,
.table .btn-sm,
.actions .btn,
.action-col .btn {
    min-height: 32px;
    padding: 0.28rem 0.52rem;
    line-height: 1.15;
}

.pagination {
    gap: 0.25rem;
    flex-wrap: wrap;
}

.page-link {
    border-radius: 9px;
    border-color: var(--gnet-border);
    color: var(--gnet-text);
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-item.active .page-link {
    background: var(--gnet-brand);
    border-color: var(--gnet-brand);
    color: #ffffff;
}

.page-link:hover {
    background: color-mix(in srgb, var(--gnet-brand-soft) 70%, transparent);
    color: var(--gnet-brand-strong);
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border: 1px solid var(--gnet-border);
    border-radius: 10px;
    min-height: 34px;
    padding: 0.35rem 0.55rem;
    background: var(--gnet-bg-elevated);
    color: var(--gnet-text);
}

.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_info {
    color: var(--gnet-text-muted);
    font-size: 0.82rem;
}

.form-control,
.form-select,
select,
textarea,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
input[type='date'],
input[type='search'] {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid var(--gnet-border);
    background: var(--gnet-bg-elevated);
    color: var(--gnet-text);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
select:focus,
textarea:focus,
input:focus {
    border-color: var(--gnet-brand);
    box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--gnet-brand) 24%, transparent);
}

.form-label,
label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gnet-text);
    margin-bottom: 0.35rem;
}

.form-group,
.mb-3 {
    margin-bottom: 0.85rem !important;
}

textarea.form-control,
textarea,
select[multiple] {
    min-height: 96px;
}

.input-group-text {
    border-radius: 12px;
    border-color: var(--gnet-border);
    background: var(--gnet-bg-soft);
    color: var(--gnet-text-muted);
}

.badge {
    border-radius: 999px;
    font-weight: 700;
}

.badge,
.badge-success,
.badge-warning,
.badge-danger,
.badge-info,
.badge-primary,
.badge-secondary {
    padding: 0.24rem 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
}

.alert {
    border-radius: 12px;
    border: 1px solid var(--gnet-border);
    font-size: 0.9rem;
}

.alert-success {
    background: color-mix(in srgb, #dcfce7 80%, transparent);
    border-color: color-mix(in srgb, #86efac 78%, transparent);
    color: #14532d;
}

.alert-info {
    background: color-mix(in srgb, #dbeafe 80%, transparent);
    border-color: color-mix(in srgb, #93c5fd 78%, transparent);
    color: #1e3a8a;
}

.alert-warning {
    background: color-mix(in srgb, #fef3c7 86%, transparent);
    border-color: color-mix(in srgb, #fcd34d 78%, transparent);
    color: #78350f;
}

.alert-danger {
    background: color-mix(in srgb, #fee2e2 84%, transparent);
    border-color: color-mix(in srgb, #fca5a5 78%, transparent);
    color: #7f1d1d;
}

.modal {
    background-color: color-mix(in srgb, #091521 56%, transparent);
    backdrop-filter: blur(2px);
}

.modal-dialog {
    margin-top: clamp(1rem, 5vh, 2.2rem);
}

.modal-content {
    border-radius: 16px;
    border: 1px solid var(--gnet-border);
    box-shadow: var(--gnet-shadow-hover);
    overflow: hidden;
}

.modal-header,
.modal-footer {
    background: var(--gnet-bg-soft);
    border-color: var(--gnet-border);
    padding: 0.72rem 1rem;
}

.modal-title {
    font-family: var(--gnet-font-heading);
    color: var(--gnet-text);
    font-size: 1rem;
    font-weight: 700;
}

.modal-body {
    padding: 1rem;
    color: var(--gnet-text);
}

html[data-theme='dark'] .dashboard-header,
html[data-theme='dark'] .sidebar,
html[data-theme='dark'] .header-notif-panel,
html[data-theme='dark'] .table-responsive,
html[data-theme='dark'] .table-container,
html[data-theme='dark'] .btn-logout {
    background: var(--gnet-bg-elevated) !important;
    color: var(--gnet-text);
    border-color: var(--gnet-border) !important;
}

html[data-theme='dark'] .app-content-slot .card,
html[data-theme='dark'] .app-content-slot .panel,
html[data-theme='dark'] .app-content-slot .chart-shell,
html[data-theme='dark'] .app-content-slot .stat-item,
html[data-theme='dark'] .app-content-slot .focus-strip,
html[data-theme='dark'] .app-content-slot .utility-banner,
html[data-theme='dark'] .app-content-slot .context-card {
    background: var(--gnet-bg-elevated);
    border-color: var(--gnet-border);
}

html[data-theme='dark'] .header-notif-panel-head,
html[data-theme='dark'] .header-notif-item,
html[data-theme='dark'] .table thead th,
html[data-theme='dark'] .table tbody tr:hover,
html[data-theme='dark'] .sidebar-tools {
    background: var(--gnet-bg-soft) !important;
}

html[data-theme='dark'] .modal,
html[data-theme='dark'] .modal-backdrop.show {
    background-color: rgba(2, 6, 23, 0.62) !important;
}

html[data-theme='dark'] .modal-content,
html[data-theme='dark'] .modal-header,
html[data-theme='dark'] .modal-footer,
html[data-theme='dark'] .alert {
    background: var(--gnet-bg-elevated);
    color: var(--gnet-text);
    border-color: var(--gnet-border);
}

html[data-theme='dark'] .alert-success {
    background: color-mix(in srgb, #14532d 32%, var(--gnet-bg-elevated));
}

html[data-theme='dark'] .alert-info {
    background: color-mix(in srgb, #1e3a8a 32%, var(--gnet-bg-elevated));
}

html[data-theme='dark'] .alert-warning {
    background: color-mix(in srgb, #78350f 32%, var(--gnet-bg-elevated));
}

html[data-theme='dark'] .alert-danger {
    background: color-mix(in srgb, #7f1d1d 32%, var(--gnet-bg-elevated));
}

html[data-theme='dark'] .sidebar-overlay {
    background: rgba(2, 6, 23, 0.6);
}

@media (max-width: 1280px) {
    .dashboard-content {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .dashboard-content {
        padding: 16px;
    }

    .header-context {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .dashboard-header-content {
        padding: 0 14px;
    }

    .header-brand-copy,
    .user-name {
        display: none !important;
    }

    .dashboard-content {
        padding: 14px;
    }

    .sidebar {
        width: min(280px, 84vw);
        max-width: 280px;
    }

    .form-control,
    .form-select,
    .input-group-text,
    select,
    textarea,
    input[type='text'],
    input[type='email'],
    input[type='password'],
    input[type='number'],
    input[type='date'],
    input[type='search'] {
        min-height: 42px;
    }

    .table-responsive .table {
        min-width: 620px;
    }

    .table td,
    .table th {
        padding: 0.5rem 0.56rem;
    }

    .app-content-slot .card-header,
    .app-content-slot .panel-head,
    .app-content-slot .focus-head,
    .app-content-slot .utility-head {
        padding: 0.54rem 0.66rem;
    }

    .app-content-slot .card-body,
    .app-content-slot .panel-body,
    .app-content-slot .focus-body,
    .app-content-slot .utility-body,
    .app-content-slot .chart-wrap,
    .app-content-slot .kpi-block {
        padding: 0.62rem 0.66rem;
    }

    .modal-dialog {
        margin: 0.7rem;
    }

    .modal-body,
    .modal-header,
    .modal-footer {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.revenue-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.revenue-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    border-left: 4px solid #667eea;
}

.revenue-item .revenue-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.revenue-item .revenue-icon {
    font-size: 1.5rem;
}

.revenue-item .revenue-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.revenue-item .revenue-value.earning {
    color: #28a745;
}

.revenue-item .revenue-value.expense {
    color: #dc3545;
}

.revenue-item .revenue-value.profit {
    color: #667eea;
}

/* Progress Bars */
.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.progress-bar.progress-success {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.progress-bar.progress-warning {
    background: linear-gradient(90deg, #ffc107 0%, #fd7e14 100%);
}

.progress-bar.progress-danger {
    background: linear-gradient(90deg, #dc3545 0%, #e83e8c 100%);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-success {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.badge-primary {
    background-color: #007bff;
    color: white;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

/* Empty State Styling */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    font-size: 0.875rem;
    color: #7f8c8d;
}

/* Management List Enhancements */
.management-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.management-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.2s;
}

.management-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.management-item .item-icon {
    font-size: 24px;
}

.management-item .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.management-item .item-content strong {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.management-item .item-content span {
    font-size: 12px;
    color: #7f8c8d;
}

.management-item .item-arrow {
    font-size: 18px;
    color: #7f8c8d;
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Disabled link styling */
.sidebar-menu a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Checkbox Label Styles */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: #333;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert strong {
    font-weight: 600;
}

/* Form Helper Text */
small.text-muted {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
}

/* ── oxblue brand utilities (Router Wizard) ─────────────────────────────── */
/* Gnet brand green used throughout the wizard views */
.text-oxblue          { color: var(--color-oxblue) !important; }
.bg-oxblue            { background-color: var(--color-oxblue) !important; }
.border-oxblue        { border-color: var(--color-oxblue) !important; }
.hover\:bg-oxblue:hover       { background-color: var(--color-oxblue) !important; }
.hover\:text-oxblue:hover     { color: var(--color-oxblue) !important; }
.hover\:border-oxblue:hover   { border-color: var(--color-oxblue) !important; }
.focus\:ring-oxblue:focus     { --tw-ring-color: var(--color-oxblue); }
.ring-oxblue          { --tw-ring-color: var(--color-oxblue); }
.from-oxblue          { --tw-gradient-from: var(--color-oxblue); }
.to-oxblue            { --tw-gradient-to: var(--color-oxblue); }
/* ─────────────────────────────────────────────────────────────────────────── */

