/* ADS Spot — Custom styles (minimal, Tailwind handles most) */

/* Font mono for numbers */
.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Safe area for mobile bottom nav */
.safe-bottom {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Smooth transitions for page switches */
[v-cloak] { display: none; }

/* Pulse animation for connected indicator */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.animate-pulse {
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Number transition effect */
.stat-value {
    transition: color 0.3s ease;
}

/* Table hover effect */
table tbody tr {
    transition: background-color 0.15s ease;
}

/* Input focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
}

/* Chart canvas responsive */
canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Modal enter animation */
.modal-enter {
    animation: modal-in 0.2s ease-out;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Active nav item indicator on mobile */
nav button.text-accent {
    position: relative;
}
nav button.text-accent::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #f59e0b;
    border-radius: 1px;
}

/* Select dropdown fix for dark theme */
select option {
    background: #16161d;
    color: #e5e7eb;
}
