body {
    -webkit-tap-highlight-color: transparent;
}

/* Custom scrollbar for chat */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.05);
}

.nav-active {
    color: #ec4899;
}
.nav-inactive {
    color: #9ca3af;
}

/* Input Range Styling (Pink accent) */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ec4899;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 2px 4px rgba(236, 72, 153, 0.3);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #fce7f3;
    border-radius: 4px;
}
input[type=range]:focus {
    outline: none;
}
