/* Dutch License Plate */
.plate-nl {
    background-color: #FFD700;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    display: inline-flex;
    align-items: stretch;
    padding: 0 8px 0 0;
    font-family: 'Roboto Mono', monospace;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    text-transform: uppercase;
    line-height: 1;
}
.plate-nl::before {
    content: "NL";
    background-color: #003399;
    color: #fff;
    font-size: 10px;
    padding: 0 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #000;
    min-width: 24px;
}

/* Turkish License Plate */
.plate-tr {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    display: inline-flex;
    align-items: stretch;
    padding: 0 8px 0 0;
    font-family: 'Roboto Mono', monospace;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    text-transform: uppercase;
    line-height: 1;
}
.plate-tr::before {
    content: "TR";
    background-color: #003399;
    color: #fff;
    font-size: 10px;
    padding: 0 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #000;
    min-width: 24px;
}

/* General Plate styles */
.plate-container {
    display: inline-block;
    transform: scale(0.9);
    transform-origin: left center;
}

/* Skeleton Shimmer Animation */
.skeleton-shimmer {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Tab Scroll Functionality */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.tab-scroll-container {
    position: relative;
    width: 100%;
}

.scroll-indicator-right {
    background: linear-gradient(90deg, rgba(243, 244, 246, 0) 0%, rgba(243, 244, 246, 1) 60%);
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

@keyframes pulse-horizontal-right {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(4px); opacity: 1; }
}

@keyframes pulse-horizontal-left {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(-4px); opacity: 1; }
}

.animate-pulse-right {
    animation: pulse-horizontal-right 1.5s ease-in-out infinite;
}

.animate-pulse-left {
    animation: pulse-horizontal-left 1.5s ease-in-out infinite;
}

.scroll-indicator-left {
    background: linear-gradient(270deg, rgba(243, 244, 246, 0) 0%, rgba(243, 244, 246, 1) 60%);
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}



