/* _content/Mobile/Pages/CarInfor/InsertCar.razor.rz.scp.css */
/* 전체 컨테이너를 위한 페이드인 애니메이션 */
.fade-in[b-letnvn7w6i] {
    animation: fadeInAnimation-b-letnvn7w6i ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation-b-letnvn7w6i {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 카드에 적용될 애니메이션 및 호버 효과 */
.animated-card[b-letnvn7w6i] {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .animated-card:hover[b-letnvn7w6i] {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

/* 버튼 호버 효과 */
.btn[b-letnvn7w6i] {
    transition: all 0.3s ease;
}

    .btn:hover[b-letnvn7w6i] {
        transform: scale(1.05);
    }

/* 입력 필드 포커스 효과 */
.form-control:focus[b-letnvn7w6i] {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.my-custom-button[b-letnvn7w6i] {
    background-color: #6f42c1; /* 보라색 배경 */
    border-color: #6f42c1; /* 테두리 색상 */
    color: white; /* 글자 색상 */
}

    /* 버튼에 마우스를 올렸을 때 스타일 */
    .my-custom-button:hover[b-letnvn7w6i] {
        background-color: #5a3d9a;
        border-color: #5a3d9a;
    }

/* 기존 CSS 코드가 있다면 그 아래에 추가합니다. */

/* 입력 필드에 대한 부드러운 전환 효과를 정의합니다. */
.form-control[b-letnvn7w6i] {
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    /* 입력 필드에 포커스가 맞춰졌을 때의 스타일입니다. */
    .form-control:focus[b-letnvn7w6i] {
        border-color: #86b7fe; /* Bootstrap의 기본 포커스 색상과 유사 */
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        transform: scale(1.01); /* 약간 확대되는 효과 */
    }

/* 페이지 로드 시 페이드 인 효과 */
.fade-in[b-letnvn7w6i] {
    animation: fadeInAnimation-b-letnvn7w6i ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation-b-letnvn7w6i {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 카드에 대한 애니메이션 효과 */
.animated-card[b-letnvn7w6i] {
    transition: transform 0.2s ease-in-out;
}

    .animated-card:hover[b-letnvn7w6i] {
        transform: translateY(-3px); /* 마우스 호버 시 살짝 위로 이동 */
    }
/* _content/Mobile/Pages/CarInfor/SpecialtyCar.razor.rz.scp.css */
.specialty-car-container[b-icyx5q9hon] {
    padding: 0.5rem;
}

.info-item[b-icyx5q9hon] {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid #eee;
}

    .info-item:last-child[b-icyx5q9hon] {
        border-bottom: none;
    }

.info-label[b-icyx5q9hon] {
    font-weight: bold;
    color: #555;
}

.info-value[b-icyx5q9hon] {
    color: #333;
}

.list-header[b-icyx5q9hon] {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.car-item-card .card-body[b-icyx5q9hon] {
    padding: 0.75rem;
}

.car-item-header[b-icyx5q9hon] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.car-number[b-icyx5q9hon] {
    font-weight: bold;
    font-size: 1.1rem;
    color: navy;
}

.car-item-detail[b-icyx5q9hon] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9em;
}

    .car-item-detail span[b-icyx5q9hon] {
        color: #444;
    }

    .car-item-detail strong[b-icyx5q9hon] {
        color: #000;
    }
/* _content/Mobile/Shared/MainLayout.razor.rz.scp.css */
.page[b-5onnugn3ya] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-5onnugn3ya] {
    flex: 1;
}

.sidebar[b-5onnugn3ya] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-5onnugn3ya] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-5onnugn3ya]  a, .top-row .btn-link[b-5onnugn3ya] {
        white-space: nowrap;
        margin-left: 1rem;
    }

    .top-row a:first-child[b-5onnugn3ya] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-5onnugn3ya] {
        display: none;
    }

    .top-row.auth[b-5onnugn3ya] {
        justify-content: space-between;
    }

    .top-row a[b-5onnugn3ya], .top-row .btn-link[b-5onnugn3ya] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-5onnugn3ya] {
        flex-direction: row;
    }

    .sidebar[b-5onnugn3ya] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-5onnugn3ya] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-5onnugn3ya], article[b-5onnugn3ya] {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}
/* _content/Mobile/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-9rryiuebhs] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-9rryiuebhs] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9rryiuebhs] {
    font-size: 1.1rem;
}

.oi[b-9rryiuebhs] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-9rryiuebhs] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-9rryiuebhs] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-9rryiuebhs] {
        padding-bottom: 1rem;
    }

    .nav-item[b-9rryiuebhs]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-9rryiuebhs]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-9rryiuebhs]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9rryiuebhs] {
        display: none;
    }

    .collapse[b-9rryiuebhs] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/Mobile/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-34o4ahlkc5] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-34o4ahlkc5] {
  color: #0077cc;
}

.btn-primary[b-34o4ahlkc5] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-34o4ahlkc5], .nav-pills .show > .nav-link[b-34o4ahlkc5] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-34o4ahlkc5] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-34o4ahlkc5] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-34o4ahlkc5] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-34o4ahlkc5] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-34o4ahlkc5] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
