/* Cashcash Custom Styles - Light Theme */

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* Touch-friendly inputs */
input, select, button {
    font-size: 16px !important;
    min-height: 48px;
}

/* Remove number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Touch feedback */
.touch-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

/* Select dropdown arrow */
select {
    background-image: none;
}

/* Focus ring animation */
input:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    overscroll-behavior: none;
}

/* Custom select arrow override */
select option {
    background-color: white;
    color: #374151;
}