/* Human Crafted Styling & Authentic Turkish Taxi Elements */

/* Authentic Turkish License Plate */
.turkish-plate {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 6px;
    overflow: hidden;
    height: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.turkish-plate .tr-flag {
    background: #003399;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 0 5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
}

.turkish-plate .plate-text {
    color: #000000;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 14px;
    padding: 0 8px;
    letter-spacing: 1px;
}

/* Mini Plate */
.turkish-plate-mini {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 4px;
    overflow: hidden;
    height: 24px;
}

.turkish-plate-mini .tr-flag {
    background: #003399;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    padding: 0 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.turkish-plate-mini .plate-text {
    color: #000000;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 11px;
    padding: 0 6px;
    letter-spacing: 0.5px;
}

/* Smooth Touch Actions */
html, body {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Clean Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0c0e12;
}
::-webkit-scrollbar-thumb {
    background: #232938;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Safe Area for iOS */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .fixed.bottom-0 {
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    }
}
