/*
© 2025 Sharon Aicler (saichler@gmail.com)

Layer 8 Ecosystem is licensed under the Apache License, Version 2.0.
You may obtain a copy of the License at:

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/**
 * Mobile Probler - Navigation Styles
 * Dashboard stats cards (no bottom nav initially — sidebar-only)
 */

/* Nav stats grid (dashboard overview cards) */
.nav-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.nav-stat-card {
    background: var(--bg-card);
    border-radius: 0;
    border: 1px solid var(--border-light);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-fast);
}

.nav-stat-card:active {
    transform: scale(0.98);
    background: var(--bg-tertiary);
}

.nav-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.nav-stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
}

.nav-stat-icon.warning {
    background: var(--status-pending-bg);
}

.nav-stat-icon.warning svg {
    color: var(--status-pending);
}

.nav-stat-icon.success {
    background: var(--status-active-bg);
}

.nav-stat-icon.success svg {
    color: var(--status-active);
}

.nav-stat-icon.danger {
    background: var(--status-terminated-bg);
}

.nav-stat-icon.danger svg {
    color: var(--status-terminated);
}

.nav-stat-icon.info {
    background: var(--status-info-bg);
}

.nav-stat-icon.info svg {
    color: var(--status-info);
}

.nav-stat-content {
    flex: 1;
    min-width: 0;
}

.nav-stat-value {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    line-height: 1.2;
}

.nav-stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
