@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    background-color: #111827;
    color: #f3f4f6;
    margin: 0; 
    padding: 0;
    -webkit-user-select: none; 
    user-select: none;
}

::-webkit-scrollbar { 
    width: 8px; 
    height: 8px; 
}
::-webkit-scrollbar-track { 
    background: #1f2937; 
}
::-webkit-scrollbar-thumb { 
    background: #4b5563; 
    border-radius: 4px; 
}

[x-cloak] { 
    display: none !important; 
}

/* 모바일 카메라 리더기 뷰 강제 스타일 오버라이드 */
#qr-reader { 
    width: 100%; 
    border-radius: 0.75rem; 
    overflow: hidden; 
    border: none !important; 
}
#qr-reader video { 
    object-fit: cover; 
    border-radius: 0.75rem; 
    max-height: 250px; 
    width: 100%; 
}
#qr-reader__dashboard_section_csr span { 
    color: #9ca3af !important; 
}

/* 커스텀 달력용 셀렉트 박스 화살표 스타일 */
.custom-select {
    background-color: transparent;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    padding-right: 1.5rem;
    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='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0 center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    cursor: pointer;
}
.custom-select:focus { 
    outline: none; 
}
.custom-select option { 
    background-color: #1f2937; 
    color: white; 
}

/* Number input spinner hide */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}