/* 전체 레이아웃 최소 너비 설정 - 화면 깨짐 방지 */
.layout-wrapper {
    min-width: 1490px;
}

.section-sticky {
    z-index: 100;
    margin: 0 !important;
    padding: 0 !important;
}

/* Header Navbar - 파란색 배경 및 간격 제거 */
#layout-navbar {
    background-color: #38bdf8 !important;
    margin: 0 !important;
    padding: 0.5rem 1.5rem !important;
}

#layout-navbar .text-white {
    color: #fff !important;
}
.fz-11 {
    font-size: 11px !important;
}
.text-blue {
    color: rgb(0, 47, 255);
}

.bg-light-gray {
    background: #f9f9f9;
}
.border-black {
    border: 1px solid #000;
}

.page-item.first .page-link,
.page-item.last .page-link {
    letter-spacing: -2px;
}
.btn-ecor {
    background-color: #38bdf8;
    color: #fff;
}
.btn-ecor:hover,
.btn-ecor:focus {
    background-color: #0ea5e9;
    color: #fff;
}
.bg-menu-theme .menu-inner > .menu-item.active > .menu-link {
    color: #38bdf8;
    background-color: rgba(56, 189, 248, 0.16) !important;
}
.bg-menu-theme .menu-inner > .menu-item.active:before {
    background-color: #38bdf8;
}
.table thead th {
    padding: 4px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
}
.table tbody td {
    padding: 5px 8px;
    border: 1px solid #ddd;
}
.table tbody th {
    padding: 5px 8px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
}
.page-item.active .page-link,
.page-item.active .page-link:hover,
.page-item.active .page-link:focus,
.pagination li.active > a:not(.page-link),
.pagination li.active > a:not(.page-link):hover,
.pagination li.active > a:not(.page-link):focus {
    border-color: #38bdf8;
    background-color: #38bdf8;
    color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(56, 189, 248, 0.4);
}
.color-red {
    color: #ff0000;
}
.btn-check:checked + .btn-outline-ecor,
.btn-check:active + .btn-outline-ecor,
.btn-outline-ecor:active,
.btn-outline-ecor.active,
.btn-outline-ecor.dropdown-toggle.show {
    color: #fff;
    border-color: #38bdf8;
    background-color: #38bdf8;
}
.btn-outline-ecor {
    color: #38bdf8;
    border-color: #38bdf8;
    background: transparent;
}
/* btn-outline-info 스타일 오버라이드 (하늘색) */
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
    color: #fff !important;
    border-color: #38bdf8 !important;
    background-color: #38bdf8 !important;
}
.btn-outline-info {
    color: #38bdf8 !important;
    border-color: #38bdf8 !important;
    background: transparent !important;
}
.btn-outline-info:hover,
.btn-outline-info:focus {
    color: #fff !important;
    border-color: #0ea5e9 !important;
    background-color: #0ea5e9 !important;
}
.nav-pills .nav-link.active,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:focus {
    background-color: #666;
    color: #fff;
    box-shadow: 0 2px 4px 0 rgba(105, 108, 255, 0.4);
}
.table th {
    text-transform: none !important;
    vertical-align: middle;
}

.toast-container {
    z-index: 105000;
    /* z-index 값을 높게 설정 */
}

.auth-master {
    display: none;
}

.avatar.avatar-online:after {
    display: none;
}

.auth-none {
    display: none;
}

/* 공통 로딩 스피너 스타일 */
#common-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.1);
}

#common-loading .spinner-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border: 0.4rem solid rgba(56, 189, 248, 0.2);
    border-top-color: #38bdf8;
    border-radius: 50%;
    animation: spinner-border 1.5s linear infinite;
    /* GPU 가속으로 메인 스레드 블로킹 시에도 부드러운 회전 */
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes spinner-border {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Form Controls - 보라색 제거 및 하늘색 테마 적용 */
.form-control:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0.25rem 0.05rem rgba(56, 189, 248, 0.2) !important;
}

.form-select:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0.25rem 0.05rem rgba(56, 189, 248, 0.2) !important;
}

.form-check-input:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0.25rem 0.05rem rgba(56, 189, 248, 0.2) !important;
}

.form-check-input:checked {
    background-color: #38bdf8 !important;
    border-color: #38bdf8 !important;
}

/* Input Group - 보라색 제거 */
.input-group .form-control:focus,
.input-group .form-select:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0.25rem 0.05rem rgba(56, 189, 248, 0.2) !important;
}

.input-group-text {
    border-color: #d9dee3;
}

.input-group:focus-within .input-group-text {
    border-color: #38bdf8 !important;
}

/* Links - 보라색 제거 */
a {
    color: #38bdf8;
}

a:hover {
    color: #0ea5e9;
}

/* Primary colors override */
.text-primary {
    color: #38bdf8 !important;
}

.bg-primary {
    background-color: #38bdf8 !important;
}

.border-primary {
    border-color: #38bdf8 !important;
}

.btn-primary {
    background-color: #38bdf8;
    border-color: #38bdf8;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
}

.btn-outline-primary {
    color: #38bdf8;
    border-color: #38bdf8;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #38bdf8;
    border-color: #38bdf8;
    color: #fff;
}

/* List Group - active 상태 보라색 제거 */
.list-group-item-action.active {
    background-color: #38bdf8 !important;
    border-color: #38bdf8 !important;
    color: #fff !important;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
    background-color: rgba(56, 189, 248, 0.08);
}

.list-group-item-primary {
    background-color: rgba(56, 189, 248, 0.1) !important;
    color: #38bdf8 !important;
}

/* SweetAlert2 - 확인 버튼 보라색 제거 */
.swal2-confirm {
    background-color: #38bdf8 !important;
    border-color: #38bdf8 !important;
}

.swal2-confirm:hover,
.swal2-confirm:focus {
    background-color: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.25) !important;
}

/* SweetAlert2 - Progress bar */
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
    background-color: #38bdf8 !important;
}

.swal2-progress-steps .swal2-progress-step-line {
    background-color: #38bdf8 !important;
}

/* Search Button - Sky Blue 500 */
.btn-search {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
}

.btn-search:hover,
.btn-search:focus,
.btn-search:active {
    background-color: #0284c7;
    border-color: #0284c7;
    color: #fff;
}

/* Outline Ecor Button - Icon Color */
.btn-outline-ecor i {
    color: #38bdf8;
}

.btn-outline-ecor:hover i,
.btn-outline-ecor:focus i,
.btn-outline-ecor:active i,
.btn-outline-ecor.active i {
    color: #fff;
}

/* Detail Button - Gray Tone */
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

/* focus 상태에서는 outline 스타일 유지 (팝업 닫힌 후 스타일 변경 방지) */
.btn-outline-secondary:focus {
    background-color: transparent;
    border-color: #6c757d;
    color: #6c757d;
    box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
}

.btn-outline-secondary i {
    color: #6c757d;
}

.btn-outline-secondary:hover i,
.btn-outline-secondary:active i {
    color: #fff;
}

.btn-outline-secondary:focus i {
    color: #6c757d;
}

/* Danger Button - focus 상태에서 outline 스타일 유지 */
.btn-outline-danger:focus {
    background-color: transparent !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.btn-outline-danger:focus i {
    color: #dc3545 !important;
}

/* ========== 반응형 스타일 ========== */

/* 모바일 및 작은 화면 (768px 이하) */
@media (max-width: 768px) {
    /* 버튼 크기 조정 - 높이 유지하되 텍스트 줄바꿈 허용 */
    .btn {
        white-space: normal !important;
        word-wrap: break-word !important;
        min-height: 38px !important;
        height: auto !important;
        padding: 0.375rem 0.75rem !important;
    }

    /* Select Box 높이 고정 */
    .form-select {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
    }

    /* Input 높이 고정 */
    .form-control {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        padding: 0.375rem 0.75rem !important;
    }

    /* Textarea는 높이 자동 */
    textarea.form-control {
        height: auto !important;
        min-height: 60px !important;
        max-height: none !important;
    }

    /* 카드 여백 조정 */
    .card {
        margin-bottom: 1rem !important;
    }

    /* 테이블 반응형 처리 */
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* 테이블 셀 패딩 조정 */
    .table thead th,
    .table tbody td,
    .table tbody th {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.875rem !important;
    }

    /* 버튼 그룹 */
    .btn-group {
        flex-wrap: wrap !important;
    }

    .btn-group .btn {
        flex: 1 1 auto !important;
        margin-bottom: 0.25rem !important;
    }

    /* 모달 조정 */
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }

    /* 네비게이션 바 */
    #layout-navbar {
        padding: 0.5rem 1rem !important;
    }

    /* 페이지 타이틀 */
    h3.fw-bold {
        font-size: 1.25rem !important;
    }
}

/* 중간 화면 (769px ~ 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .form-select,
    .form-control {
        height: 38px !important;
        min-height: 38px !important;
    }

    textarea.form-control {
        height: auto !important;
        min-height: 60px !important;
    }

    .btn {
        height: auto !important;
        min-height: auto !important;
        white-space: nowrap !important;
    }
}

/* 큰 화면 (993px 이상) */
@media (min-width: 993px) {
    .form-select,
    .form-control {
        height: 38px !important;
        min-height: 38px !important;
    }

    textarea.form-control {
        height: auto !important;
        min-height: 60px !important;
    }

    .btn {
        height: auto !important;
        min-height: auto !important;
    }
}

/* 공통: 컴포넌트 높이 일관성 유지 (38px 통일) */
.form-control,
.form-select,
.btn {
    box-sizing: border-box !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
    vertical-align: middle !important;
}

textarea.form-control {
    height: auto !important;
    min-height: 60px !important;
    max-height: none !important;
}

/* 버튼 좌우 패딩 */
.btn {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

/* 버튼 내 아이콘 크기 조정 */
.btn i,
.btn .bx {
    font-size: 1rem !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* 스케줄러 컨트롤 버튼 (badge 높이에 맞춤) */
.btn-scheduler {
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    width: 24px !important;
    padding: 0 !important;
    font-size: 0.75rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-scheduler i,
.btn-scheduler .bx {
    font-size: 0.875rem !important;
    line-height: 1 !important;
}

/* 테이블 내 작은 버튼 (아이콘만 있는 버튼) */
.table .btn {
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    width: 32px !important;
    padding: 0.25rem !important;
    font-size: 0.875rem !important;
}

.table .btn i,
.table .btn .bx {
    font-size: 0.875rem !important;
}

/* 버튼 텍스트 줄바꿈 방지 (큰 화면) */
@media (min-width: 769px) {
    .btn {
        white-space: nowrap !important;
    }
}

/* 버튼 텍스트 줄바꿈 허용 (작은 화면) */
@media (max-width: 768px) {
    .btn {
        white-space: normal !important;
        text-align: center !important;
    }
}

/* ========== 카드 내 테이블 오버플로우 방지 ========== */
.card {
    overflow: hidden;
}

.card-body {
    overflow-x: auto;
}

/* 테이블 반응형 - 가로 스크롤 지원 */
.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* 테이블 기본 너비 - 컨테이너 100% 채우기 */
.table {
    width: 100% !important;
    table-layout: auto;
}

/* ========== Sticky Table 스타일 ========== */
/* 테이블 컨테이너 - 가로/세로 스크롤 지원 */
.table-sticky-container {
    max-height: 70vh;
    overflow: auto;
    position: relative;
}

/* Sticky 테이블 기본 설정 */
.table-sticky {
    border-collapse: separate;
    border-spacing: 0;
}

/* 세로 스크롤 시 헤더 고정 */
.table-sticky thead th {
    position: sticky;
    z-index: 10;
    background-color: #f8f8f8;
}

/* 가로 스크롤 시 고정 열 - sticky-col 클래스 사용 */
.table-sticky .sticky-col-1 {
    position: sticky;
    left: 0;
    z-index: 11;
    background-color: #f8f8f8;
}

.table-sticky .sticky-col-2 {
    position: sticky;
    left: 50px;
    z-index: 11;
    background-color: #f8f8f8;
}

/* 헤더의 고정 열은 z-index 더 높게 */
.table-sticky thead .sticky-col-1,
.table-sticky thead .sticky-col-2 {
    z-index: 20;
}

/* tbody의 고정 열 배경색 */
.table-sticky tbody .sticky-col-1,
.table-sticky tbody .sticky-col-2 {
    background-color: #fff;
}

/* 호버 시에도 고정 열 배경색 유지 */
.table-sticky tbody tr:hover .sticky-col-1,
.table-sticky tbody tr:hover .sticky-col-2 {
    background-color: #f5f5f5;
}

/* 줄무늬 행에서 고정 열 배경색 */
.table-striped.table-sticky tbody tr:nth-of-type(odd) .sticky-col-1,
.table-striped.table-sticky tbody tr:nth-of-type(odd) .sticky-col-2 {
    background-color: #fafafa;
}

/* 고정 열 그림자 효과 */
.table-sticky .sticky-col-2::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to right, rgba(0,0,0,0.08), transparent);
    pointer-events: none;
}

/* 헤더 행 top 위치 - 동적으로 JS에서 계산 */
/* 기본값: 모든 헤더 th에 top: 0 (JS에서 덮어씀) */
.table-sticky thead th {
    top: 0;
}

/* 셀 position relative 추가 (그림자 효과용) */
.table-sticky .sticky-col-2 {
    position: sticky;
}

/* ========== 모바일 메뉴 토글 버튼 스타일 ========== */
/* 사이드바 닫기 버튼 - 보라색 원형 버튼 제거, 심플한 스타일로 변경 */
/* app-brand를 relative로 설정하여 버튼이 이 영역 내에 위치하도록 함 */
.app-brand {
    position: relative !important;
}

@media (max-width: 1199.98px) {
    .app-brand .layout-menu-toggle {
        background-color: transparent !important;
        border: none !important;
        border-radius: 4px !important;
        padding: 0.25rem 0.5rem !important;
        position: absolute !important;
        right: 0.5rem !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .app-brand .layout-menu-toggle i {
        color: #697a8d !important;
        width: auto !important;
        height: auto !important;
    }

    .app-brand .layout-menu-toggle:hover {
        background-color: rgba(56, 189, 248, 0.1) !important;
    }

    .app-brand .layout-menu-toggle:hover i {
        color: #38bdf8 !important;
    }
}

/* ========== 검색 필터 영역 반응형 스타일 ========== */
.search-filter-area {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: flex-end;
    justify-content: space-between;
}

.search-filter-area .filter-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.search-filter-area .filter-item {
    display: flex;
    flex-direction: column;
}

.search-filter-area .filter-item label {
    color: #666;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.search-filter-area .filter-item .form-select,
.search-filter-area .filter-item .form-control {
    width: 155px !important;
}

.search-filter-area .filter-item-date {
    min-width: auto;
}

.search-filter-area .date-range-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-filter-area .date-separator {
    color: #666;
    font-weight: 500;
}

.search-filter-area .date-range-group .form-control {
    width: 145px !important;
    min-width: 145px !important;
}

.search-filter-area .filter-item-period .form-select {
    width: 115px !important;
    min-width: 115px !important;
}

.search-filter-area .filter-item-search {
    min-width: 65px;
}

.search-filter-area .filter-item-search .btn {
    width: 65px !important;
}

.search-filter-area .action-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: flex-end;
}

.search-filter-area .action-row .form-select {
    width: 130px !important;
    min-width: 130px !important;
}

/* 태블릿 (992px 이하) */
@media (max-width: 992px) {
    .search-filter-area {
        flex-wrap: wrap;
    }

    .search-filter-area .filter-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .search-filter-area .filter-item {
        min-width: 100px;
    }

    .search-filter-area .date-range-group .form-control {
        width: 140px !important;
        min-width: 140px !important;
    }

    .search-filter-area .filter-item-period .form-select {
        width: 100px !important;
        min-width: 100px !important;
    }

    .search-filter-area .action-row {
        flex-wrap: wrap;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    .search-filter-area .filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .search-filter-area .filter-item {
        width: 100%;
        min-width: auto;
    }

    .search-filter-area .filter-item .form-select,
    .search-filter-area .filter-item .form-control {
        width: 100% !important;
        min-width: auto !important;
    }

    .search-filter-area .filter-item-date {
        width: 100%;
    }

    .search-filter-area .date-range-group {
        width: 100%;
    }

    .search-filter-area .date-range-group .form-control {
        flex: 1;
        width: auto !important;
        min-width: auto !important;
    }

    .search-filter-area .filter-item-period {
        width: 100%;
    }

    .search-filter-area .filter-item-period .form-select {
        width: 100% !important;
        min-width: auto !important;
    }

    .search-filter-area .filter-item-period label {
        display: none;
    }

    .search-filter-area .filter-item-search {
        width: 100%;
        min-width: auto;
    }

    .search-filter-area .filter-item-search label {
        display: none;
    }

    .search-filter-area .action-row {
        width: 100%;
        justify-content: flex-start;
    }

    .search-filter-area .action-row .btn {
        flex: 1;
        min-width: 0;
    }

    .search-filter-area .action-row .form-select {
        flex: 1;
        width: auto !important;
        min-width: auto !important;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
    .search-filter-area .action-row {
        flex-direction: column;
    }

    .search-filter-area .action-row .btn,
    .search-filter-area .action-row .form-select {
        width: 100%;
    }

    .search-filter-area .date-range-group {
        flex-direction: column;
        gap: 0.25rem;
    }

    .search-filter-area .date-separator {
        display: none;
    }

    .search-filter-area .date-range-group .form-control {
        width: 100% !important;
    }
}

/* ========== Date Picker 커스텀 스타일 ========== */
/* Chrome, Edge, Safari 용 Date Picker 스타일링 */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

/* 캘린더 아이콘 스타일 */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 4px;
    margin-right: -4px;
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background-color: rgba(56, 189, 248, 0.1);
}

/* Date Picker 팝업 스타일 (Chrome/Edge) */
::-webkit-datetime-edit {
    padding: 0;
}

::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

::-webkit-datetime-edit-text {
    color: #697a8d;
    padding: 0 2px;
}

::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-year-field {
    color: #566a7f;
    padding: 2px;
    border-radius: 2px;
}

::-webkit-datetime-edit-month-field:focus,
::-webkit-datetime-edit-day-field:focus,
::-webkit-datetime-edit-year-field:focus {
    background-color: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    outline: none;
}

/* Date input placeholder 스타일 */
input[type="date"]:not(:valid)::-webkit-datetime-edit {
    color: #a1acb8;
}

/* Firefox용 Date Input 스타일 */
input[type="date"]::-moz-focus-inner {
    border: 0;
}

/* 날짜 선택 팝업 전체 스타일 (Chromium 기반 브라우저) */
::-webkit-calendar-picker {
    background-color: #fff;
}

/* Input date hover 효과 */
input[type="date"]:hover {
    border-color: #38bdf8;
}

/* Input date focus 효과 */
input[type="date"]:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0.25rem 0.05rem rgba(56, 189, 248, 0.2) !important;
    outline: none;
}

/* Readonly 및 Disabled 상태 */
input[type="date"]:read-only {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

input[type="date"]:read-only::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"]:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

input[type="date"]:disabled::-webkit-calendar-picker-indicator {
    display: none;
}
