/* _content/Erp_Apt_Web/Pages/Index.razor.rz.scp.css */
/* ===================================
   히어로 섹션
   =================================== */

.hero-section[b-hdo3imcwsh] {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image[b-hdo3imcwsh] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay[b-hdo3imcwsh] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content[b-hdo3imcwsh] {
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-title[b-hdo3imcwsh] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInDown-b-hdo3imcwsh 0.8s ease-out;
}

    .hero-title i[b-hdo3imcwsh] {
        font-size: 3rem;
        margin-right: 1rem;
        animation: pulse-b-hdo3imcwsh 2s ease-in-out infinite;
    }

.hero-subtitle[b-hdo3imcwsh] {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.95;
    animation: fadeInUp-b-hdo3imcwsh 0.8s ease-out 0.2s both;
}

/* ===================================
   빠른 액션 버튼
   =================================== */

.quick-actions-container[b-hdo3imcwsh] {
    margin-bottom: 3rem;
}

.quick-actions-grid[b-hdo3imcwsh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.action-card[b-hdo3imcwsh] {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

    .action-card[b-hdo3imcwsh]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: currentColor;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .action-card:hover[b-hdo3imcwsh] {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

        .action-card:hover[b-hdo3imcwsh]::before {
            transform: scaleX(1);
        }

.action-icon[b-hdo3imcwsh] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.action-card:hover .action-icon[b-hdo3imcwsh] {
    transform: scale(1.1) rotate(5deg);
}

.company-logo[b-hdo3imcwsh] {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.action-content[b-hdo3imcwsh] {
    flex: 1;
}

    .action-content h6[b-hdo3imcwsh] {
        margin: 0 0 0.25rem 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e293b;
    }

    .action-content span[b-hdo3imcwsh] {
        font-size: 0.875rem;
        color: #64748b;
    }

.action-arrow[b-hdo3imcwsh] {
    font-size: 1.25rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow[b-hdo3imcwsh] {
    opacity: 1;
    transform: translateX(4px);
}

/* 카드 색상 테마 */
.card-primary[b-hdo3imcwsh] {
    color: #3b82f6;
}

    .card-primary .action-icon[b-hdo3imcwsh] {
        background: #eff6ff;
    }

.card-secondary[b-hdo3imcwsh] {
    color: #6366f1;
}

    .card-secondary .action-icon[b-hdo3imcwsh] {
        background: #eef2ff;
    }

.card-info[b-hdo3imcwsh] {
    color: #06b6d4;
}

    .card-info .action-icon[b-hdo3imcwsh] {
        background: #ecfeff;
    }

.card-warning[b-hdo3imcwsh] {
    color: #f59e0b;
}

    .card-warning .action-icon[b-hdo3imcwsh] {
        background: #fffbeb;
    }

.card-success[b-hdo3imcwsh] {
    color: #10b981;
}

    .card-success .action-icon[b-hdo3imcwsh] {
        background: #ecfdf5;
    }

.card-danger[b-hdo3imcwsh] {
    color: #ef4444;
}

    .card-danger .action-icon[b-hdo3imcwsh] {
        background: #fef2f2;
    }

/* ===================================
   대시보드 섹션
   =================================== */

.dashboard-section[b-hdo3imcwsh] {
    margin-bottom: 3rem;
}

.section-header[b-hdo3imcwsh] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.header-icon[b-hdo3imcwsh] {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f59e0b;
}

.header-content h5[b-hdo3imcwsh] {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #92400e;
}

.header-content p[b-hdo3imcwsh] {
    margin: 0;
    font-size: 0.875rem;
    color: #78350f;
}

.dashboard-grid[b-hdo3imcwsh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

/* ===================================
   대시보드 카드
   =================================== */

.dashboard-card[b-hdo3imcwsh] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .dashboard-card:hover[b-hdo3imcwsh] {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

.card-header-modern[b-hdo3imcwsh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.header-left[b-hdo3imcwsh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .header-left i[b-hdo3imcwsh] {
        font-size: 1.5rem;
        color: #3b82f6;
    }

    .header-left h6[b-hdo3imcwsh] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e293b;
    }

.badge-count[b-hdo3imcwsh] {
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-alert[b-hdo3imcwsh] {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
}

.badge-success[b-hdo3imcwsh] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
}

.card-body-modern[b-hdo3imcwsh] {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    /* 스크롤바 숨기기 - 모든 브라우저 지원 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    /* WebKit 브라우저 (Chrome, Safari, Opera) 스크롤바 숨기기 */
    .card-body-modern[b-hdo3imcwsh]::-webkit-scrollbar {
        display: none;
    }

/* ===================================
   작업 목록
   =================================== */

.task-list[b-hdo3imcwsh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item[b-hdo3imcwsh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .task-item:hover[b-hdo3imcwsh] {
        background: #eff6ff;
        transform: translateX(4px);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    }

.task-content[b-hdo3imcwsh] {
    flex: 1;
    min-width: 0;
}

.task-title[b-hdo3imcwsh] {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-meta[b-hdo3imcwsh] {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: #64748b;
}

    .task-meta span[b-hdo3imcwsh] {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .task-meta i[b-hdo3imcwsh] {
        font-size: 0.875rem;
    }

.task-status[b-hdo3imcwsh] {
    margin-left: 1rem;
}

.status-badge[b-hdo3imcwsh] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pending[b-hdo3imcwsh] {
    background: #fef2f2;
    color: #dc2626;
}

.status-progress[b-hdo3imcwsh] {
    background: #ecfdf5;
    color: #059669;
}

/* ===================================
   빈 상태
   =================================== */

.empty-state[b-hdo3imcwsh] {
    text-align: center;
    padding: 3rem 1rem;
}

    .empty-state i[b-hdo3imcwsh] {
        font-size: 4rem;
        color: #10b981;
        margin-bottom: 1rem;
        opacity: 0.8;
    }

    .empty-state p[b-hdo3imcwsh] {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .empty-state span[b-hdo3imcwsh] {
        font-size: 0.875rem;
        color: #64748b;
    }

/* ===================================
   모달
   =================================== */

.modern-modal[b-hdo3imcwsh] {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.modal-header-modern[b-hdo3imcwsh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
}

.modal-title-modern[b-hdo3imcwsh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .modal-title-modern i[b-hdo3imcwsh] {
        font-size: 1.5rem;
    }

    .modal-title-modern h5[b-hdo3imcwsh] {
        margin: 0;
        font-weight: 600;
    }

.btn-close-modern[b-hdo3imcwsh] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-close-modern:hover[b-hdo3imcwsh] {
        background: rgba(255, 255, 255, 0.3);
    }

.modal-body-modern[b-hdo3imcwsh] {
    padding: 0;
}

.notice-image-container[b-hdo3imcwsh] {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f8fafc;
}

.notice-image[b-hdo3imcwsh] {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.modal-footer-modern[b-hdo3imcwsh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border: none;
}

.form-check-modern[b-hdo3imcwsh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .form-check-modern label[b-hdo3imcwsh] {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.875rem;
        color: #475569;
        cursor: pointer;
        margin: 0;
    }

.btn-secondary-modern[b-hdo3imcwsh] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #64748b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-secondary-modern:hover[b-hdo3imcwsh] {
        background: #475569;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
    }

/* ===================================
   애니메이션
   =================================== */

@keyframes fadeInDown-b-hdo3imcwsh {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-hdo3imcwsh {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-hdo3imcwsh {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   반응형 디자인
   =================================== */

@media (max-width: 1200px) {
    .dashboard-grid[b-hdo3imcwsh] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section[b-hdo3imcwsh] {
        height: 300px;
    }

    .hero-title[b-hdo3imcwsh] {
        font-size: 2rem;
    }

    .hero-subtitle[b-hdo3imcwsh] {
        font-size: 1.125rem;
    }

    .quick-actions-grid[b-hdo3imcwsh] {
        grid-template-columns: 1fr;
    }

    .action-card[b-hdo3imcwsh] {
        padding: 1.25rem;
    }

    .dashboard-grid[b-hdo3imcwsh] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header[b-hdo3imcwsh] {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title[b-hdo3imcwsh] {
        font-size: 1.5rem;
    }

        .hero-title i[b-hdo3imcwsh] {
            font-size: 1.5rem;
        }

    .hero-subtitle[b-hdo3imcwsh] {
        font-size: 1rem;
    }

    .task-meta[b-hdo3imcwsh] {
        flex-direction: column;
        gap: 0.25rem;
    }
}
/* _content/Erp_Apt_Web/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.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-tmk6d86fl5] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-tmk6d86fl5] {
  color: #0077cc;
}

.btn-primary[b-tmk6d86fl5] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-tmk6d86fl5], .nav-pills .show > .nav-link[b-tmk6d86fl5] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-tmk6d86fl5] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-tmk6d86fl5] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-tmk6d86fl5] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-tmk6d86fl5] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-tmk6d86fl5] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* _content/Erp_Apt_Web/Pages/StateCheckings/Index.razor.rz.scp.css */
/* ===================================
   전역 변수 및 테마
   =================================== */
:root[b-w48lb791an] {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --secondary-color: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: all 0.3s ease;
}

/* ===================================
   메인 카드 스타일
   =================================== */
.state-checking-container[b-w48lb791an] {
    padding: 1.5rem;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.main-card[b-w48lb791an] {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: none;
    margin-bottom: 2rem;
}

/* ===================================
   헤더 스타일
   =================================== */
.card-header-custom[b-w48lb791an] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border: none;
}

.header-content[b-w48lb791an] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-title[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

    .header-title h5[b-w48lb791an] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
    }

.record-badge[b-w48lb791an] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
}

.header-actions[b-w48lb791an] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ===================================
   버튼 스타일
   =================================== */
.btn-modern[b-w48lb791an] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

    .btn-modern:hover[b-w48lb791an] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .btn-modern:active[b-w48lb791an] {
        transform: translateY(0);
    }

.btn-primary-modern[b-w48lb791an] {
    background: var(--primary-color);
    color: white;
}

    .btn-primary-modern:hover[b-w48lb791an] {
        background: var(--primary-hover);
        color: white;
    }

.btn-info-modern[b-w48lb791an] {
    background: var(--info-color);
    color: white;
}

.btn-warning-modern[b-w48lb791an] {
    background: var(--warning-color);
    color: white;
}

.btn-secondary-modern[b-w48lb791an] {
    background: var(--secondary-color);
    color: white;
}

.btn-danger-modern[b-w48lb791an] {
    background: var(--danger-color);
    color: white;
}

/* ===================================
   테이블 스타일
   =================================== */
.table-container[b-w48lb791an] {
    overflow-x: auto;
}

.table-modern[b-w48lb791an] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.875rem;
}

    .table-modern thead[b-w48lb791an] {
        background-color: var(--bg-light);
    }

        .table-modern thead th[b-w48lb791an] {
            padding: 1rem 0.75rem;
            text-align: center;
            font-weight: 600;
            color: var(--text-dark);
            border-bottom: 2px solid var(--border-color);
            white-space: nowrap;
        }

    .table-modern tbody tr[b-w48lb791an] {
        transition: var(--transition);
        background: white;
    }

        .table-modern tbody tr:hover[b-w48lb791an] {
            background-color: #f8fafc;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transform: translateY(-1px);
        }

    .table-modern tbody td[b-w48lb791an] {
        padding: 0.875rem 0.75rem;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid var(--border-color);
    }

.table-clickable[b-w48lb791an] {
    cursor: pointer;
}

/* ===================================
   배지 스타일
   =================================== */
.badge-modern[b-w48lb791an] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-primary[b-w48lb791an] {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-success[b-w48lb791an] {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-warning[b-w48lb791an] {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-danger[b-w48lb791an] {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-info[b-w48lb791an] {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-secondary[b-w48lb791an] {
    background-color: #f3f4f6;
    color: #4b5563;
}

/* ===================================
   모달 스타일
   =================================== */
.modal-custom[b-w48lb791an] {
    display: block;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-dialog-custom[b-w48lb791an] {
    position: relative;
    margin: 2rem auto;
    max-width: 500px;
    animation: modalSlideDown-b-w48lb791an 0.3s ease-out;
}

.modal-dialog-lg[b-w48lb791an] {
    max-width: 800px;
}

.modal-dialog-xl[b-w48lb791an] {
    max-width: 1140px;
}

@keyframes modalSlideDown-b-w48lb791an {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content-custom[b-w48lb791an] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: none;
    overflow: hidden;
}

.modal-header-custom[b-w48lb791an] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
}

    .modal-header-custom h6[b-w48lb791an] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.modal-close-btn[b-w48lb791an] {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

    .modal-close-btn:hover[b-w48lb791an] {
        background: rgba(255, 255, 255, 0.2);
    }

.modal-body-custom[b-w48lb791an] {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer-custom[b-w48lb791an] {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
}

/* ===================================
   폼 스타일
   =================================== */
.form-group-modern[b-w48lb791an] {
    margin-bottom: 1.25rem;
}

.form-label-modern[b-w48lb791an] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

    .form-label-modern i[b-w48lb791an] {
        color: var(--primary-color);
    }

.form-control-modern[b-w48lb791an] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition);
}

    .form-control-modern:focus[b-w48lb791an] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

.form-select-modern[b-w48lb791an] {
    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;
}

.input-group-modern[b-w48lb791an] {
    display: flex;
    margin-bottom: 1rem;
}

.input-group-text-modern[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.input-group-modern .form-control-modern[b-w48lb791an] {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ===================================
   로딩 및 빈 상태
   =================================== */
.loading-container[b-w48lb791an] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
}

.spinner-modern[b-w48lb791an] {
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    animation: spin-b-w48lb791an 1s linear infinite;
}

@keyframes spin-b-w48lb791an {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.empty-state[b-w48lb791an] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
}

    .empty-state i[b-w48lb791an] {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

/* ===================================
   액션 버튼 그룹
   =================================== */
.action-btn-group[b-w48lb791an] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.action-btn[b-w48lb791an] {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

    .action-btn:hover[b-w48lb791an] {
        background: var(--bg-light);
        border-color: var(--text-muted);
    }

.action-btn-primary:hover[b-w48lb791an] {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.action-btn-danger:hover[b-w48lb791an] {
    background: var(--danger-color);
    color: white;
    border-color: var(--danger-color);
}

/* ===================================
   페이지네이션
   =================================== */
.pagination-container[b-w48lb791an] {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

/* ===================================
   알림 모달
   =================================== */
.alert-modal[b-w48lb791an] {
    text-align: center;
}

.alert-icon[b-w48lb791an] {
    font-size: 3.5rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.alert-modal h5[b-w48lb791an] {
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
}

.alert-modal p[b-w48lb791an] {
    color: var(--text-muted);
    margin: 0.25rem 0;
}

/* ===================================
   반응형 디자인
   =================================== */
@media (max-width: 768px) {
    .state-checking-container[b-w48lb791an] {
        padding: 1rem;
    }

    .header-content[b-w48lb791an] {
        flex-direction: column;
        align-items: stretch;
    }

    .header-actions[b-w48lb791an] {
        flex-direction: column;
    }

    .btn-modern[b-w48lb791an] {
        width: 100%;
        justify-content: center;
    }

    .modal-dialog-custom[b-w48lb791an] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .table-modern[b-w48lb791an] {
        font-size: 0.75rem;
    }

        .table-modern thead th[b-w48lb791an],
        .table-modern tbody td[b-w48lb791an] {
            padding: 0.5rem 0.375rem;
        }

    .action-btn-group[b-w48lb791an] {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .header-title h5[b-w48lb791an] {
        font-size: 1rem;
    }

    .badge-modern[b-w48lb791an] {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ===================================
   유틸리티 클래스
   =================================== */
.text-center[b-w48lb791an] {
    text-align: center;
}

.text-right[b-w48lb791an] {
    text-align: right;
}

.text-muted[b-w48lb791an] {
    color: var(--text-muted);
}

.mb-0[b-w48lb791an] {
    margin-bottom: 0;
}

.mb-1[b-w48lb791an] {
    margin-bottom: 0.25rem;
}

.mb-2[b-w48lb791an] {
    margin-bottom: 0.5rem;
}

.mb-3[b-w48lb791an] {
    margin-bottom: 1rem;
}

.mb-4[b-w48lb791an] {
    margin-bottom: 1.5rem;
}

.mt-0[b-w48lb791an] {
    margin-top: 0;
}

.mt-1[b-w48lb791an] {
    margin-top: 0.25rem;
}

.mt-2[b-w48lb791an] {
    margin-top: 0.5rem;
}

.mt-3[b-w48lb791an] {
    margin-top: 1rem;
}

.mt-4[b-w48lb791an] {
    margin-top: 1.5rem;
}

.p-0[b-w48lb791an] {
    padding: 0;
}

.p-1[b-w48lb791an] {
    padding: 0.25rem;
}

.p-2[b-w48lb791an] {
    padding: 0.5rem;
}

.p-3[b-w48lb791an] {
    padding: 1rem;
}

.p-4[b-w48lb791an] {
    padding: 1.5rem;
}

.fw-bold[b-w48lb791an] {
    font-weight: 600;
}

.fw-normal[b-w48lb791an] {
    font-weight: 400;
}

/* ===================================
   스크롤바 스타일 (크롬/사파리)
   =================================== */
[b-w48lb791an]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

[b-w48lb791an]::-webkit-scrollbar-track {
    background: var(--bg-light);
}

[b-w48lb791an]::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

    [b-w48lb791an]::-webkit-scrollbar-thumb:hover {
        background: var(--text-muted);
    }


/* ===================================
   수전설비 정보 섹션 스타일
   =================================== */

.facility-info-section[b-w48lb791an] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-w48lb791an] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.section-title[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .section-title i[b-w48lb791an] {
        font-size: 1.5rem;
        color: #4f46e5;
    }

    .section-title h6[b-w48lb791an] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: #1f2937;
    }

.date-badge[b-w48lb791an] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-actions[b-w48lb791an] {
    display: flex;
    gap: 0.5rem;
}

/* ===================================
   상태 테이블 스타일
   =================================== */

.state-table-wrapper[b-w48lb791an] {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.state-table[b-w48lb791an] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

    .state-table thead tr.group-header th[b-w48lb791an] {
        padding: 1rem 0.75rem;
        text-align: center;
        font-weight: 600;
        font-size: 0.9rem;
        border-bottom: 2px solid #cbd5e1;
    }

.group-cell[b-w48lb791an] {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

    .group-cell i[b-w48lb791an] {
        margin-right: 0.375rem;
    }

.group-primary[b-w48lb791an] {
    color: #1e40af;
    border-right: 2px solid #cbd5e1;
}

.group-secondary[b-w48lb791an] {
    color: #059669;
    border-right: 2px solid #cbd5e1;
}

.group-tertiary[b-w48lb791an] {
    color: #dc2626;
    border-right: 2px solid #cbd5e1;
}

.group-workers[b-w48lb791an] {
    color: #7c3aed;
}

.state-table thead tr.field-header th[b-w48lb791an] {
    padding: 0.875rem 0.5rem;
    text-align: center;
    font-weight: 500;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
    transition: all 0.2s ease;
}

    .state-table thead tr.field-header th i[b-w48lb791an] {
        font-size: 0.875rem;
        margin-right: 0.25rem;
        opacity: 0.7;
    }

    .state-table thead tr.field-header th.clickable:hover[b-w48lb791an] {
        background: #f3f4f6;
        color: #4f46e5;
        cursor: pointer;
        transform: translateY(-2px);
    }

.state-table tbody td[b-w48lb791an] {
    padding: 1rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.no-data-badge[b-w48lb791an] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #dc2626;
    font-size: 0.8125rem;
    background: #fee2e2;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-weight: 500;
}

    .no-data-badge i[b-w48lb791an] {
        font-size: 0.875rem;
    }

.value-display[b-w48lb791an] {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
}

    .value-display .unit[b-w48lb791an] {
        font-weight: 400;
        color: #6b7280;
        font-size: 0.8125rem;
        margin-left: 0.25rem;
    }

.workers-cell[b-w48lb791an] {
    background: #f9fafb;
    font-weight: 500;
    color: #4b5563;
}

/* ===================================
   검침 정보 테이블 스타일
   =================================== */

.usage-table-wrapper[b-w48lb791an] {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.usage-table[b-w48lb791an] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

    .usage-table thead tr.category-header th[b-w48lb791an] {
        padding: 1rem 0.75rem;
        text-align: center;
        font-weight: 600;
        font-size: 0.9rem;
        border-bottom: 2px solid #cbd5e1;
    }

.category-label[b-w48lb791an] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-right: 2px solid #cbd5e1;
}

.category-main[b-w48lb791an] {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-right: 2px solid #cbd5e1;
}

    .category-main i[b-w48lb791an] {
        margin-right: 0.375rem;
    }

.category-industrial[b-w48lb791an] {
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-right: 2px solid #cbd5e1;
}

    .category-industrial i[b-w48lb791an] {
        margin-right: 0.375rem;
    }

.category-street[b-w48lb791an] {
    background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
}

    .category-street i[b-w48lb791an] {
        margin-right: 0.375rem;
    }

.usage-table tbody tr.type-row td[b-w48lb791an] {
    padding: 0.75rem;
    text-align: center;
    background: #f8fafc;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

    .usage-table tbody tr.type-row td.clickable[b-w48lb791an] {
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .usage-table tbody tr.type-row td.clickable:hover[b-w48lb791an] {
            background: #e0e7ff;
            color: #4f46e5;
            transform: scale(1.02);
        }

.usage-table tbody tr.data-row td[b-w48lb791an] {
    padding: 0.875rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.row-label[b-w48lb791an] {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    text-align: left !important;
    padding-left: 1rem !important;
    border-right: 1px solid #e5e7eb;
}

    .row-label i[b-w48lb791an] {
        margin-right: 0.5rem;
        color: #6b7280;
    }

.highlight-row[b-w48lb791an] {
    background: #eff6ff;
}

    .highlight-row td[b-w48lb791an] {
        border-bottom: 1px solid #bfdbfe;
    }

.highlight-value[b-w48lb791an] {
    color: #1e40af;
    font-weight: 600;
    font-size: 0.9375rem;
}

.summary-row[b-w48lb791an] {
    background: #fefce8;
}

    .summary-row td[b-w48lb791an] {
        font-weight: 500;
        color: #713f12;
    }

/* ===================================
   반응형 디자인
   =================================== */

@media (max-width: 1200px) {
    .state-table[b-w48lb791an],
    .usage-table[b-w48lb791an] {
        font-size: 0.8125rem;
    }

        .state-table thead tr.field-header th[b-w48lb791an],
        .usage-table tbody tr.type-row td[b-w48lb791an] {
            padding: 0.625rem 0.375rem;
        }

    .section-header[b-w48lb791an] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-actions[b-w48lb791an] {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .facility-info-section[b-w48lb791an] {
        padding: 1rem;
    }

    .section-title h6[b-w48lb791an] {
        font-size: 1rem;
    }

    .date-badge[b-w48lb791an] {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }

    .state-table-wrapper[b-w48lb791an],
    .usage-table-wrapper[b-w48lb791an] {
        border-radius: 4px;
    }

    .state-table thead tr.group-header th[b-w48lb791an],
    .usage-table thead tr.category-header th[b-w48lb791an] {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }

    .no-data-badge[b-w48lb791an] {
        font-size: 0.75rem;
        padding: 0.1875rem 0.5rem;
    }

    .value-display[b-w48lb791an] {
        font-size: 0.875rem;
    }

    .section-actions[b-w48lb791an] {
        flex-direction: column;
    }

        .section-actions button[b-w48lb791an] {
            width: 100%;
            justify-content: center;
        }
}

/* ===================================
   애니메이션
   =================================== */

@keyframes fadeInUp-b-w48lb791an {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-info-section[b-w48lb791an] {
    animation: fadeInUp-b-w48lb791an 0.4s ease-out;
}

.state-table tbody tr[b-w48lb791an],
.usage-table tbody tr[b-w48lb791an] {
    transition: background-color 0.2s ease;
}

    .state-table tbody tr:hover[b-w48lb791an],
    .usage-table tbody tr.data-row:hover[b-w48lb791an] {
        background-color: #f8fafc;
    }

/* ===================================
   인쇄 스타일
   =================================== */

@media print {
    .section-actions[b-w48lb791an] {
        display: none;
    }

    .facility-info-section[b-w48lb791an] {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .state-table thead tr.field-header th.clickable:hover[b-w48lb791an],
    .usage-table tbody tr.type-row td.clickable:hover[b-w48lb791an] {
        background: inherit;
        transform: none;
    }
}

/* ===================================
   변압기 상태 정보 스타일
   =================================== */

.transformer-grid[b-w48lb791an] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.transformer-card[b-w48lb791an] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

    .transformer-card:hover[b-w48lb791an] {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.transformer-header[b-w48lb791an] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

    .transformer-header:hover[b-w48lb791an] {
        background: linear-gradient(135deg, #5568d3 0%, #6a3f92 100%);
    }

    .transformer-header i.bi-lightning-charge-fill[b-w48lb791an] {
        font-size: 1.5rem;
        animation: pulse-b-w48lb791an 2s infinite;
    }

@keyframes pulse-b-w48lb791an {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.transformer-header h6[b-w48lb791an] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    flex: 1;
}

.transformer-header .edit-icon[b-w48lb791an] {
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.transformer-header:hover .edit-icon[b-w48lb791an] {
    opacity: 1;
}

.transformer-body[b-w48lb791an] {
    padding: 0;
    overflow-x: auto;
}

.transformer-table[b-w48lb791an] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

    .transformer-table thead tr.field-labels th[b-w48lb791an] {
        background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 0.875rem 0.75rem;
        text-align: center;
        font-weight: 600;
        color: #475569;
        border-bottom: 2px solid #e2e8f0;
        white-space: nowrap;
    }

        .transformer-table thead tr.field-labels th i[b-w48lb791an] {
            margin-right: 0.375rem;
            color: #64748b;
            font-size: 0.875rem;
        }

    .transformer-table tbody tr[b-w48lb791an] {
        transition: background-color 0.2s ease;
    }

        .transformer-table tbody tr:hover[b-w48lb791an] {
            background-color: #f8fafc;
        }

    .transformer-table tbody td[b-w48lb791an] {
        padding: 0.875rem 0.75rem;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }

.label-cell[b-w48lb791an] {
    background: #fafbfc;
    font-weight: 500;
    text-align: left !important;
    padding-left: 1rem !important;
    border-right: 2px solid #e5e7eb;
    min-width: 100px;
}

.status-badge[b-w48lb791an] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

    .status-badge i[b-w48lb791an] {
        font-size: 0.875rem;
    }

.badge-primary[b-w48lb791an] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.badge-info[b-w48lb791an] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.badge-danger[b-w48lb791an] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.badge-warning[b-w48lb791an] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

/* 데이터 행 스타일 */
.data-current[b-w48lb791an] {
    background: #f0f9ff;
}

.data-previous[b-w48lb791an] {
    background: #ecfeff;
}

.data-max[b-w48lb791an] {
    background: #fef2f2;
}

.data-min[b-w48lb791an] {
    background: #fffbeb;
}

/* 값 스타일 */
.value-current[b-w48lb791an] {
    font-weight: 700;
    color: #1e40af;
    font-size: 0.9375rem;
}

.value-previous[b-w48lb791an] {
    font-weight: 600;
    color: #0e7490;
    font-size: 0.9375rem;
}

.value-max[b-w48lb791an] {
    font-weight: 700;
    color: #dc2626;
    font-size: 0.9375rem;
}

.value-min[b-w48lb791an] {
    font-weight: 700;
    color: #d97706;
    font-size: 0.9375rem;
}

.unit[b-w48lb791an] {
    font-weight: 400;
    color: #64748b;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.no-data[b-w48lb791an] {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ===================================
   반응형 디자인
   =================================== */

@media (max-width: 1400px) {
    .transformer-grid[b-w48lb791an] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .transformer-header[b-w48lb791an] {
        padding: 1rem;
    }

        .transformer-header h6[b-w48lb791an] {
            font-size: 1rem;
        }

    .transformer-table[b-w48lb791an] {
        font-size: 0.8125rem;
    }

        .transformer-table thead tr.field-labels th[b-w48lb791an],
        .transformer-table tbody td[b-w48lb791an] {
            padding: 0.625rem 0.5rem;
        }

    .status-badge[b-w48lb791an] {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .value-current[b-w48lb791an],
    .value-previous[b-w48lb791an],
    .value-max[b-w48lb791an],
    .value-min[b-w48lb791an] {
        font-size: 0.875rem;
    }

    .unit[b-w48lb791an] {
        font-size: 0.6875rem;
    }
}

@media (max-width: 576px) {
    .transformer-body[b-w48lb791an] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .transformer-table[b-w48lb791an] {
        min-width: 800px;
    }
}

/* ===================================
   인쇄 스타일
   =================================== */

@media print {
    .transformer-card[b-w48lb791an] {
        box-shadow: none;
        border: 1px solid #e5e7eb;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }

    .transformer-header[b-w48lb791an] {
        background: #667eea !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

        .transformer-header .edit-icon[b-w48lb791an] {
            display: none;
        }

    .data-current[b-w48lb791an],
    .data-previous[b-w48lb791an],
    .data-max[b-w48lb791an],
    .data-min[b-w48lb791an] {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ===================================
   애니메이션
   =================================== */

@keyframes fadeInCard-b-w48lb791an {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transformer-card[b-w48lb791an] {
    animation: fadeInCard-b-w48lb791an 0.4s ease-out;
}

    .transformer-card:nth-child(2)[b-w48lb791an] {
        animation-delay: 0.1s;
    }

    .transformer-card:nth-child(3)[b-w48lb791an] {
        animation-delay: 0.2s;
    }

    .transformer-card:nth-child(4)[b-w48lb791an] {
        animation-delay: 0.3s;
    }

/* ===================================
   스크롤바 스타일 (WebKit)
   =================================== */

.transformer-body[b-w48lb791an]::-webkit-scrollbar {
    height: 8px;
}

.transformer-body[b-w48lb791an]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.transformer-body[b-w48lb791an]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

    .transformer-body[b-w48lb791an]::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* ===================================
   급수시설 상태 정보 스타일
   =================================== */

.water-facility-grid[b-w48lb791an] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.water-facility-card[b-w48lb791an] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

    .water-facility-card:hover[b-w48lb791an] {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-color: #3b82f6;
    }

.water-card-header[b-w48lb791an] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

    .water-card-header[b-w48lb791an]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

.facility-icon[b-w48lb791an] {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.facility-name[b-w48lb791an] {
    flex: 1;
}

    .facility-name h6[b-w48lb791an] {
        margin: 0;
        color: white;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

.edit-hint[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    transition: color 0.2s;
}

.water-facility-card:hover .edit-hint[b-w48lb791an] {
    color: white;
}

.water-card-body[b-w48lb791an] {
    padding: 1.5rem;
}

.value-row[b-w48lb791an] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.current-value-row[b-w48lb791an] {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}

.value-label[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
}

    .value-label i[b-w48lb791an] {
        font-size: 1rem;
        color: #64748b;
    }

.value-content[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-number[b-w48lb791an] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.normal-value .value-number[b-w48lb791an] {
    color: #64748b;
}

.current-value .value-number[b-w48lb791an] {
    color: #1e40af;
}

.value-unit[b-w48lb791an] {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.no-data[b-w48lb791an] {
    color: #94a3b8 !important;
}

/* 상태 인디케이터 */
.status-indicator[b-w48lb791an] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.status-normal[b-w48lb791an] {
    background: #dcfce7;
    color: #16a34a;
}

.status-warning[b-w48lb791an] {
    background: #fef3c7;
    color: #d97706;
}

.status-low[b-w48lb791an],
.status-high[b-w48lb791an] {
    background: #fee2e2;
    color: #dc2626;
}

.status-unknown[b-w48lb791an] {
    background: #f1f5f9;
    color: #94a3b8;
}

/* 상태 바 */
.status-bar-container[b-w48lb791an] {
    margin-top: 1rem;
}

.status-bar[b-w48lb791an] {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.status-bar-fill[b-w48lb791an] {
    height: 100%;
    border-radius: 999px;
    transition: width 0.5s ease, background 0.3s ease;
}

.bar-success[b-w48lb791an] {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.bar-warning[b-w48lb791an] {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.bar-danger[b-w48lb791an] {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.status-bar-labels[b-w48lb791an] {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.bar-label[b-w48lb791an] {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.bar-label-center[b-w48lb791an] {
    color: #1e293b;
    font-weight: 600;
}

/* 카드 푸터 */
.water-card-footer[b-w48lb791an] {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.footer-info[b-w48lb791an] {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.info-item[b-w48lb791an] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #475569;
    font-weight: 500;
}

    .info-item i[b-w48lb791an] {
        font-size: 1rem;
    }

/* ===================================
   반응형 디자인
   =================================== */

@media (max-width: 1400px) {
    .water-facility-grid[b-w48lb791an] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .water-facility-grid[b-w48lb791an] {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .water-facility-grid[b-w48lb791an] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .water-card-header[b-w48lb791an] {
        padding: 1rem;
    }

    .facility-icon[b-w48lb791an] {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .facility-name h6[b-w48lb791an] {
        font-size: 1rem;
    }

    .value-number[b-w48lb791an] {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .water-facility-grid[b-w48lb791an] {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   애니메이션
   =================================== */

@keyframes fadeInUp-b-w48lb791an {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.water-facility-card[b-w48lb791an] {
    animation: fadeInUp-b-w48lb791an 0.4s ease-out;
}

    .water-facility-card:nth-child(1)[b-w48lb791an] {
        animation-delay: 0s;
    }

    .water-facility-card:nth-child(2)[b-w48lb791an] {
        animation-delay: 0.05s;
    }

    .water-facility-card:nth-child(3)[b-w48lb791an] {
        animation-delay: 0.1s;
    }

    .water-facility-card:nth-child(4)[b-w48lb791an] {
        animation-delay: 0.15s;
    }

    .water-facility-card:nth-child(5)[b-w48lb791an] {
        animation-delay: 0.2s;
    }

    .water-facility-card:nth-child(6)[b-w48lb791an] {
        animation-delay: 0.25s;
    }

/* 아이콘 애니메이션 */
.facility-icon i[b-w48lb791an] {
    animation: pulse-b-w48lb791an 2s ease-in-out infinite;
}

@keyframes pulse-b-w48lb791an {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* 호버 시 상태 바 애니메이션 */
.water-facility-card:hover .status-bar-fill[b-w48lb791an] {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* ===================================
   인쇄 스타일
   =================================== */

@media print {
    .water-facility-grid[b-w48lb791an] {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .water-facility-card[b-w48lb791an] {
        box-shadow: none;
        border: 1px solid #e2e8f0;
        page-break-inside: avoid;
    }

    .water-card-header[b-w48lb791an] {
        background: #06b6d4 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .edit-hint[b-w48lb791an] {
        display: none;
    }

    .water-facility-card:hover[b-w48lb791an] {
        transform: none;
    }
}
/* _content/Erp_Apt_Web/Shared/AdminLayout.razor.rz.scp.css */
.page[b-2vuh5dpa1s] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-2vuh5dpa1s] {
    flex: 1;
}

/*.sidebar {
    background-image: linear-gradient(180deg, #808080 0%, #d6d5d5 70%);
    background-color: whitesmoke;
}*/

/*.top-row {
    background-color: white;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}*/

   /* .top-row ::deep a, .top-row .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }*/

/*@media (max-width: 640.98px) {
    .top-row:not(.auth) {
        display: none;
    }

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row a, .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 270px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}*/
/* _content/Erp_Apt_Web/Shared/AdminNavMenu.razor.rz.scp.css */
.navbar-toggler[b-2cnpr9hwkw] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-2cnpr9hwkw] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-2cnpr9hwkw] {
    font-size: 1.1rem;
}

.oi[b-2cnpr9hwkw] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-2cnpr9hwkw] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-2cnpr9hwkw] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-2cnpr9hwkw] {
    padding-bottom: 1rem;
}

.nav-item[b-2cnpr9hwkw]  a {
    color: #000000;
    border-radius: 4px;
    height: 2rem;
    display: flex;
    align-items: center;
    line-height: 2rem;
}

.nav-item[b-2cnpr9hwkw]  a.active {
    background-color: rgba(201 203 200);
    color: black;
}

    .nav-item[b-2cnpr9hwkw]  a:hover {
        background-color: rgb(255 106 0);
        color: white;
    }

@media (min-width: 641px) {
    .navbar-toggler[b-2cnpr9hwkw] {
        display: none;
    }

    .collapse[b-2cnpr9hwkw] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/Erp_Apt_Web/Shared/LoginDisplay.razor.rz.scp.css */
.login-display-container[b-yius4nmaor] {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem; /* 섹션 사이의 최소 간격 추가 */
    overflow: hidden; /* 컨테이너를 벗어나는 내용 숨김 */
}

.left-section[b-yius4nmaor] {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* 항목 사이의 간격 */
    flex-shrink: 1; /* 공간이 부족할 때 이 섹션이 줄어들도록 설정 */
    min-width: 0; /* flex 아이템이 내용보다 작게 줄어들 수 있도록 허용 */
    overflow: hidden; /* 섹션 내부에서 내용이 넘칠 경우 숨김 */
}

.right-section[b-yius4nmaor] {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* 항목 사이의 간격 */
    flex-shrink: 0; /* 이 섹션은 줄어들지 않도록 설정 */
    margin-left: auto; /* 이 섹션을 오른쪽 끝으로 밀어냄 */
}

/* 왼쪽 섹션의 링크들이 줄바꿈되지 않도록 설정 */
.left-section > *[b-yius4nmaor] {
    white-space: nowrap;
}

/* 로그아웃 폼의 불필요한 여백 제거 */
.right-section form[b-yius4nmaor] {
    margin-bottom: 0;
}

/* LoginDisplay 컴포넌트 내의 모든 a 태그 밑줄 제거 */
a[b-yius4nmaor] {
    text-decoration: none;
}

/* 버튼 스타일 및 호버 효과 추가 */
.btn[b-yius4nmaor] {
    background-color: white; /* 기본 배경색 */
    color: #495057; /* 기본 글자색 (진한 회색) */
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

    .btn:hover[b-yius4nmaor] {
        background-color: rgb(255 106 0);/* 롤오버 시 배경색 */
        color: white; /* 롤오버 시 글자색 (흰색) */
        border-color: darkorange;
    }
/* _content/Erp_Apt_Web/Shared/MainLayout.razor.rz.scp.css */
/* MainLayout���� ���Ǵ� Offcanvas ���̵�� ��Ÿ�� */

.page[b-lwlzpvw4sn] {
    display: flex;
    flex-direction: row;
    height: 100vh;
    /* ������ ��ü ��ũ�ѹ� ����� */
    overflow: hidden;
}

.sidebar[b-lwlzpvw4sn] {
    width: 250px;
    flex-shrink: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.35s ease-in-out;
    /* ��ũ�ѹ� ����� - ��� ������ ���� */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
}

    /* Webkit ��� ������(Chrome, Safari)���� ��ũ�ѹ� ����� */
    .sidebar[b-lwlzpvw4sn]::-webkit-scrollbar {
        display: none;
    }

/* ���̵�ٰ� �������� �� ��Ÿ�� */
.page.sidebar-closed .sidebar[b-lwlzpvw4sn] {
    width: 0;
}

main[b-lwlzpvw4sn] {
    flex-grow: 1;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    /* ���� ���� ��ũ�ѹ� ����� */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
}

    /* Webkit ��� ���������� ���� ���� ��ũ�ѹ� ����� */
    main[b-lwlzpvw4sn]::-webkit-scrollbar {
        display: none;
    }

.top-row[b-lwlzpvw4sn] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sidebar-toggler[b-lwlzpvw4sn] {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* LoginDisplay�� ��� �ִ� .auth div�� ���� ������ ��� �����ϵ��� ���� */
.top-row .auth[b-lwlzpvw4sn] {
    flex-grow: 1;
}

.content[b-lwlzpvw4sn] {
    flex-grow: 1;
    /* ������ ���� ��ũ�ѹ� ����� */
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
}

    /* Webkit ��� ���������� ������ ���� ��ũ�ѹ� ����� */
    .content[b-lwlzpvw4sn]::-webkit-scrollbar {
        display: none;
    }

/* ===================================
   Ǫ��
   =================================== */

.main-footer[b-lwlzpvw4sn] {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-content[b-lwlzpvw4sn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left[b-lwlzpvw4sn] {
    color: #64748b;
    font-size: 0.875rem;
}

.copyright[b-lwlzpvw4sn] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.footer-right[b-lwlzpvw4sn] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-link[b-lwlzpvw4sn] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-link:hover[b-lwlzpvw4sn] {
        color: #2563eb;
    }

.footer-divider[b-lwlzpvw4sn] {
    color: #e2e8f0;
}

.footer-text[b-lwlzpvw4sn] {
    color: #64748b;
}

/* ===================================
   �� ���� ���� ��ư
   =================================== */

.scroll-to-top[b-lwlzpvw4sn] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 50;
    font-size: 1.25rem;
}

    .scroll-to-top.show[b-lwlzpvw4sn] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-to-top:hover[b-lwlzpvw4sn] {
        background: #2563eb;
        transform: translateY(-4px);
    }

/* ===================================
   ������ ������
   =================================== */

@media (max-width: 768px) {
    .sidebar[b-lwlzpvw4sn] {
        width: 200px;
    }

    .footer-content[b-lwlzpvw4sn] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-right[b-lwlzpvw4sn] {
        flex-direction: column;
    }

    .footer-divider[b-lwlzpvw4sn] {
        display: none;
    }
}

@media (max-width: 576px) {
    .top-row[b-lwlzpvw4sn] {
        padding: 0.5rem 1rem !important;
    }

    .main-footer[b-lwlzpvw4sn] {
        padding: 1rem;
    }

    .scroll-to-top[b-lwlzpvw4sn] {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}
/* _content/Erp_Apt_Web/Shared/NavMenu.razor.rz.scp.css */
/* ===================================
   �׺���̼� ���
   =================================== */

.nav-header[b-1cwm3nttth] {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brand-container[b-1cwm3nttth] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.brand-logo[b-1cwm3nttth] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image[b-1cwm3nttth] {
    height: 32px;
    object-fit: contain;
}

.brand-text-image[b-1cwm3nttth] {
    height: 16px;
    object-fit: contain;
}

.nav-toggle[b-1cwm3nttth] {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

    .nav-toggle:hover[b-1cwm3nttth] {
        background: #3b82f6;
        color: white;
        border-color: #3b82f6;
    }

/* ===================================
   �׺���̼� �޴� �����̳�
   =================================== */

.nav-menu-container[b-1cwm3nttth] {
    height: calc(100vh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    /* ��ũ�ѹ� ����� */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .nav-menu-container[b-1cwm3nttth]::-webkit-scrollbar {
        display: none;
    }

.nav-menu[b-1cwm3nttth] {
    padding: 0.5rem 0;
}

/* ===================================
   �׺���̼� ����Ʈ
   =================================== */

.nav-list[b-1cwm3nttth] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item[b-1cwm3nttth] {
    margin: 0.25rem 0;
}

/* ===================================
   ���� �׺���̼� ��ũ
   =================================== */

.nav-link-custom[b-1cwm3nttth] {
    display: block;
    width: calc(100% - 1.5rem); /* ������ ���� ���� */
    padding: 0;
    margin: 0 0 0 0.75rem; /* ���� ���� */
    background: transparent;
    border: none;
    color: #475569;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.9375rem;
}

.nav-link-content[b-1cwm3nttth] {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    gap: 0.75rem;
    position: relative;
}

.nav-icon[b-1cwm3nttth] {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: left; /* ������ ���� ���� */
    color: #64748b;
}

.nav-text[b-1cwm3nttth] {
    flex: 1;
    font-weight: 500;
    color: #334155;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: left; /* �ؽ�Ʈ ���� ���� */
}

.nav-arrow[b-1cwm3nttth] {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
    color: #94a3b8;
    margin-left: auto; /* ȭ��ǥ�� ������ �� */
}

/* ȣ�� �� Ȱ�� ���� */
.nav-link-custom:hover[b-1cwm3nttth] {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

    .nav-link-custom:hover .nav-icon[b-1cwm3nttth] {
        color: #3b82f6;
        animation: iconBounce-b-1cwm3nttth 0.5s ease;
    }

    .nav-link-custom:hover .nav-text[b-1cwm3nttth] {
        color: #1e40af;
    }

    .nav-link-custom:hover .nav-arrow[b-1cwm3nttth] {
        opacity: 1;
        color: #3b82f6;
    }

.nav-link-custom.active[b-1cwm3nttth] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    position: relative;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

    .nav-link-custom.active .nav-icon[b-1cwm3nttth] {
        color: #2563eb;
    }

    .nav-link-custom.active .nav-text[b-1cwm3nttth] {
        color: #1e40af;
        font-weight: 600;
    }

    .nav-link-custom.active[b-1cwm3nttth]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #3b82f6;
        border-radius: 0 3px 3px 0;
    }

/* �θ� �޴� Ȱ�� ���� */
.nav-link-parent.active[b-1cwm3nttth] {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

    .nav-link-parent.active .nav-icon[b-1cwm3nttth] {
        color: #3b82f6;
    }

    .nav-link-parent.active .nav-text[b-1cwm3nttth] {
        color: #1e40af;
    }

    .nav-link-parent.active .nav-arrow[b-1cwm3nttth] {
        color: #3b82f6;
    }

/* ===================================
   ����޴�
   =================================== */

.nav-submenu[b-1cwm3nttth] {
    list-style: none;
    padding: 0 0 0 4px;
    margin: 0.25rem 0.75rem 0.25rem 1.5rem; /* ���� ���� ���� */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #3b82f6;
}

    .nav-submenu.show[b-1cwm3nttth] {
        max-height: 2000px;
        opacity: 1;
        padding: 0.5rem 0 0.5rem 4px;
        animation: slideDown-b-1cwm3nttth 0.3s ease-out;
    }

.nav-subitem[b-1cwm3nttth] {
    margin: 0.125rem 0;
}

.nav-sublink[b-1cwm3nttth] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    margin: 0 0.5rem 0 0.25rem; /* ���� ���� ���� */
    position: relative;
    border-left: 2px solid transparent;
}

    .nav-sublink i[b-1cwm3nttth] {
        font-size: 1rem;
        flex-shrink: 0;
        width: 20px;
        text-align: left; /* ������ ���� ���� */
        opacity: 0.7;
        color: #94a3b8;
        transition: all 0.25s ease;
    }

    .nav-sublink span[b-1cwm3nttth] {
        flex: 1;
        transition: all 0.25s ease;
        text-align: left; /* �ؽ�Ʈ ���� ���� */
    }

    /* ����޴� ȣ�� ȿ�� - ������ ���� ��ȭ */
    .nav-sublink:hover[b-1cwm3nttth] {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        transform: translateX(6px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        border-left: 2px solid #1e40af;
    }

        .nav-sublink:hover i[b-1cwm3nttth] {
            opacity: 1;
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .nav-sublink:hover span[b-1cwm3nttth] {
            font-weight: 600;
            letter-spacing: 0.02em;
        }

    /* NavLink Ȱ�� ���� */
    .nav-sublink.active[b-1cwm3nttth] {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        color: white;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(30, 64, 175, 0.4);
        border-left: 2px solid #60a5fa;
    }

        .nav-sublink.active[b-1cwm3nttth]::before {
            content: '';
            position: absolute;
            left: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
        }

        .nav-sublink.active i[b-1cwm3nttth] {
            color: white;
            opacity: 1;
        }

        /* Ȱ�� ���¿��� ȣ�� �� */
        .nav-sublink.active:hover[b-1cwm3nttth] {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            transform: translateX(8px);
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
        }

/* ===================================
   ������ ������
   =================================== */

@media (max-width: 1024px) {
    .nav-menu-container.collapse[b-1cwm3nttth] {
        display: none;
    }

    .nav-menu-container:not(.collapse)[b-1cwm3nttth] {
        display: block;
    }
}

@media (max-width: 768px) {
    .brand-container[b-1cwm3nttth] {
        padding: 0.875rem 1rem;
    }

    .logo-image[b-1cwm3nttth] {
        height: 28px;
    }

    .brand-text-image[b-1cwm3nttth] {
        height: 14px;
    }

    .nav-link-custom[b-1cwm3nttth] {
        margin: 0 0 0 0.5rem; /* ����Ͽ����� ���� ���� */
        width: calc(100% - 1rem);
    }

    .nav-link-content[b-1cwm3nttth] {
        padding: 0.75rem 0.875rem;
    }

    .nav-submenu[b-1cwm3nttth] {
        margin: 0.25rem 0.5rem 0.25rem 1.25rem; /* ����� ���� ���� */
        padding: 0 0 0 4px;
    }

        .nav-submenu.show[b-1cwm3nttth] {
            padding: 0.5rem 0 0.5rem 4px;
        }

    .nav-sublink[b-1cwm3nttth] {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
        margin: 0 0.25rem 0 0.125rem;
    }
}

/* ===================================
   �ִϸ��̼�
   =================================== */

@keyframes slideDown-b-1cwm3nttth {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce-b-1cwm3nttth {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

/* ===================================
   ���ټ�
   =================================== */

.nav-link-custom:focus[b-1cwm3nttth],
.nav-sublink:focus[b-1cwm3nttth] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ===================================
   �߰� �ð��� ȿ��
   =================================== */

/* ���м� */
.nav-item:not(:last-child)[b-1cwm3nttth] {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
}

/* �׸��� ȿ�� */
.nav-link-custom:active[b-1cwm3nttth] {
    transform: scale(0.98);
}

/* �ε巯�� ��ȯ */
.nav-link-custom[b-1cwm3nttth],
.nav-sublink[b-1cwm3nttth] {
    will-change: transform, background-color;
}

/* ����޴� ������ ���� �ִϸ��̼� */
.nav-subitem:nth-child(1) .nav-sublink[b-1cwm3nttth] {
    transition-delay: 0s;
}

.nav-subitem:nth-child(2) .nav-sublink[b-1cwm3nttth] {
    transition-delay: 0.02s;
}

.nav-subitem:nth-child(3) .nav-sublink[b-1cwm3nttth] {
    transition-delay: 0.04s;
}

.nav-subitem:nth-child(4) .nav-sublink[b-1cwm3nttth] {
    transition-delay: 0.06s;
}

.nav-subitem:nth-child(5) .nav-sublink[b-1cwm3nttth] {
    transition-delay: 0.08s;
}
