/* Import Inter Font globally */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Generator Style Buttons Active State */
.style-btn {
    position: relative;
}

.style-btn.active {
    border-color: #2563eb;
    background-color: #eff6ff;
    color: #2563eb;
}

/* Ensure select elements have consistent styling */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Camera reader adjustments */
#reader {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

#reader video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0.375rem; /* rounded-md */
}