/* DSH Tennis Navigation Bar */

.dsh-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom, 0px); /* For iOS safe area */
}

/* Optional: hide on desktop if needed, though mobile-first often works well for app-like views */
@media (min-width: 768px) {
    .dsh-navbar-mobile-only {
        display: none;
    }
}

.dsh-navbar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 16px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.dsh-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dsh-text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 12px;
    cursor: pointer;
}

.dsh-nav-item:hover {
    color: var(--dsh-text);
}

.dsh-nav-item:active {
    transform: scale(0.92);
}

.dsh-nav-item.dsh-active {
    background: rgba(193, 40, 49, 0.08); /* Light primary background */
    color: var(--dsh-primary);
}

.dsh-nav-item.dsh-active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1; /* Filled icon on active */
}

.dsh-nav-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.dsh-nav-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
