/**
 * TPV Screen Optimization CSS
 * Optimizes display for POS terminals
 */

/* Prevent text selection on POS interface */
.pos-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Optimize touch targets */
.pos-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent zoom on input focus (iOS) */
input, select, textarea {
    font-size: 16px !important;
}

/* Hide scrollbars but allow scrolling */
.pos-scroll::-webkit-scrollbar {
    display: none;
}
.pos-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
