/* 각 설치항목관리 페이지 전용 CSS */

/* 메인 컨테이너 */
.installations-container {
    background-color: #0f172a;
    /* background-dark */
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: rgb(226 232 240);
    /* slate-200 */
    height: 100vh;
    overflow: hidden;
    letter-spacing: -0.025em;
}

/* 래퍼 */
.installations-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* 메인 콘텐츠 영역 */
.installations-main {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

/* 콘텐츠 컨테이너 */
.installations-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    /* px-8 py-8 */
    gap: 2rem;
    /* gap-8 */
    overflow-y: auto;
}

/* 섹션 컨테이너 */

/* 대시보드 헤더 */
.installations-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    /* mb-5 */
}

.installations-dashboard-title-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
}

.installations-dashboard-icon {
    color: #3b82f6;
    /* primary */
    font-size: 1.5rem;
    /* text-2xl */
}

.installations-dashboard-title {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 900;
    color: rgb(30 41 59);
    /* slate-800 */
    color: rgb(241 245 249);
    /* slate-100 (dark mode) */
}

.installations-dashboard-subtitle {
    font-size: 0.6875rem;
    /* text-[11px] */
    font-weight: 700;
    color: rgb(148 163 184);
    /* slate-400 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 통계 카드 그리드 */
.installations-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    /* gap-4 */
}

@media (min-width: 768px) {
    .installations-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 확장된 통계 카드 그리드 (17개 항목용) */
.installations-stats-grid-expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    /* gap-3 */
}

@media (min-width: 640px) {
    .installations-stats-grid-expanded {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .installations-stats-grid-expanded {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .installations-stats-grid-expanded {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1280px) {
    .installations-stats-grid-expanded {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* --- 대시보드 개편 스타일 (사이드 바이 사이드) --- */

.installations-dashboard-split-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    /* 2rem -> 0.75rem 으로 대폭 축소 */
}

@media (min-width: 1024px) {
    .installations-dashboard-split-layout {
        flex-direction: row;
        align-items: stretch;
    }
}

/* 수도계량기 사이드 섹션 */
.installations-meter-side {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 1024px) {
    .installations-meter-side {
        width: 220px;
        /* 고정폭을 줄여 전체적인 밀도 향상 */
    }
}

.installations-hero-card-side {
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.installations-hero-card-side:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    box-shadow: 0 15px 30px -8px rgba(59, 130, 246, 0.2);
}

.installations-hero-card-side.installations-active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4), 0 15px 30px -8px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #24344d 0%, #0f172a 100%);
}

.installations-hero-side-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.installations-hero-side-icon-box {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.installations-hero-side-icon {
    font-size: 1rem !important;
    color: #3b82f6;
}

.installations-hero-side-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.installations-hero-side-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.installations-hero-side-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
}

.installations-hero-side-status {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.5rem;
}

.installations-hero-side-status-item {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    font-size: 0.75rem;
}

.installations-side-status-label {
    font-weight: 600;
    color: #64748b;
}

.installations-side-status-val {
    font-weight: 800;
}

/* 기타 시설물 사이드 섹션 */
.installations-others-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.installations-others-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.installations-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
}

.installations-stat-card-compact {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 44px;
}

.installations-stat-card-compact:hover {
    background-color: #334155;
    transform: translateY(-2px);
}

.installations-stat-card-compact.installations-active {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.installations-compact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.installations-compact-icon {
    font-size: 1.25rem !important;
    opacity: 0.8;
}

.installations-compact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #cbd5e1;
}

.installations-compact-value {
    font-size: 1rem;
    font-weight: 800;
    color: #f1f5f9;
}

/* 작은 통계 카드 */
.installations-stat-card-small {
    background-color: #1e293b;
    /* slate-800 */
    border: 1px solid #334155;
    /* slate-700 */
    border-radius: 0.75rem;
    /* rounded-xl */
    padding: 1rem;
    /* p-4 */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* gap-2 */
    cursor: pointer;
    transition: all 0.2s;
}

.installations-stat-card-small:hover {
    background-color: #334155;
    /* slate-700 */
    border-color: #3b82f6;
    /* blue-500 */
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.installations-stat-card-active {
    background-color: #334155 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

.installations-stat-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
}

.installations-stat-icon {
    font-size: 1.25rem;
    /* text-xl */
    padding: 0.375rem;
    /* p-1.5 */
    border-radius: 0.5rem;
    /* rounded-lg */
}

.installations-stat-icon-emerald {
    color: #10b981;
    /* emerald-500 */
    background-color: rgba(16, 185, 129, 0.1);
}

.installations-stat-icon-primary {
    color: #3b82f6;
    /* blue-500 */
    background-color: rgba(59, 130, 246, 0.1);
}

.installations-stat-icon-blue {
    color: #3b82f6;
    /* blue-500 */
    background-color: rgba(59, 130, 246, 0.1);
}

.installations-stat-icon-cyan {
    color: #06b6d4;
    /* cyan-500 */
    background-color: rgba(6, 182, 212, 0.1);
}

.installations-stat-icon-red {
    color: #ef4444;
    /* red-500 */
    background-color: rgba(239, 68, 68, 0.1);
}

.installations-stat-icon-amber {
    color: #f59e0b;
    /* amber-500 */
    background-color: rgba(245, 158, 11, 0.1);
}

.installations-stat-icon-orange {
    color: #f97316;
    /* orange-500 */
    background-color: rgba(249, 115, 22, 0.1);
}

.installations-stat-icon-sky {
    color: #0ea5e9;
    /* sky-500 */
    background-color: rgba(14, 165, 233, 0.1);
}

.installations-stat-icon-purple {
    color: #a855f7;
    /* purple-500 */
    background-color: rgba(168, 85, 247, 0.1);
}

.installations-stat-icon-indigo {
    color: #6366f1;
    /* indigo-500 */
    background-color: rgba(99, 102, 241, 0.1);
}

.installations-stat-icon-teal {
    color: #14b8a6;
    /* teal-500 */
    background-color: rgba(20, 184, 166, 0.1);
}

.installations-stat-icon-slate {
    color: #64748b;
    /* slate-500 */
    background-color: rgba(100, 116, 139, 0.1);
}

.installations-stat-label {
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 600;
    color: #cbd5e1;
    /* slate-300 */
}

.installations-stat-value {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: #f1f5f9;
    /* slate-100 */
    letter-spacing: -0.05em;
    margin-top: 0.25rem;
}

.installations-stat-status {
    font-size: 0.625rem;
    /* text-[10px] */
    color: #64748b;
    /* slate-500 */
    font-weight: 500;
}

@media (min-width: 1024px) {
    .installations-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .installations-stats-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 통계 카드 - Home.razor 스타일과 동일 */
.installations-stat-card {
    background-color: rgb(30 41 59);
    /* panel-bg */
    border: 1px solid rgb(51 65 85);
    /* panel-border */
    padding: 1.5rem;
    /* p-6 */
    border-radius: 0.75rem;
    /* rounded-xl */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    /* sap-shadow */
    transition: all 150ms;
}

.installations-stat-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

/* 색상 변형 클래스는 더 이상 사용하지 않음 - Tailwind 클래스로 대체 */

.installations-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.installations-stat-label {
    font-size: 0.6875rem;
    /* text-[11px] */
    font-weight: 900;
    color: rgb(148 163 184);
    /* slate-400 */
    text-transform: uppercase;
}

.installations-stat-icon {
    font-size: 1.125rem;
    /* text-lg */
}

.installations-stat-icon-emerald {
    color: rgb(16 185 129);
    /* emerald-500 */
}

.installations-stat-icon-primary {
    color: #3b82f6;
    /* primary */
}

.installations-stat-icon-amber {
    color: rgb(245 158 11);
    /* amber-500 */
}

.installations-stat-icon-slate {
    color: rgb(148 163 184);
    /* slate-400 */
}

.installations-stat-value {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 900;
    color: rgb(15 23 42);
    /* slate-900 */
    color: white;
    /* dark mode */
    margin-top: 0.5rem;
    /* mt-2 */
}

.installations-stat-badges {
    margin-top: 1rem;
    /* mt-4 */
    display: flex;
    gap: 0.75rem;
    /* gap-3 */
    font-size: 0.6875rem;
    /* text-[11px] */
    font-weight: 700;
}

.installations-stat-badge {
    padding: 0.125rem 0.5rem;
    /* px-2 py-0.5 */
    border-radius: 0.25rem;
    /* rounded */
}

.installations-stat-badge-emerald {
    background-color: rgb(209 250 229);
    /* emerald-50 */
    color: rgb(5 150 105);
    /* emerald-600 */
    background-color: rgba(5, 150, 105, 0.1);
    /* dark mode */
    color: rgb(16 185 129);
    /* emerald-500 */
}

.installations-stat-badge-amber {
    background-color: rgb(254 243 199);
    /* amber-50 */
    color: rgb(217 119 6);
    /* amber-600 */
    background-color: rgba(217, 119, 6, 0.1);
    /* dark mode */
    color: rgb(245 158 11);
    /* amber-500 */
}

.installations-stat-badge-slate {
    background-color: rgb(241 245 249);
    /* slate-100 */
    color: rgb(148 163 184);
    /* slate-400 */
    background-color: rgba(148, 163, 184, 0.1);
    /* dark mode */
    color: rgb(148 163 184);
}

.installations-stat-badge-primary {
    background-color: rgba(59, 130, 246, 0.1);
    /* blue-50 */
    color: #3b82f6;
    /* primary */
}

/* 테이블 컨테이너 */
.installations-table-container {
    background-color: white;
    background-color: rgb(15 23 42);
    /* slate-900 (dark mode) */
    border: 1px solid rgb(226 232 240);
    /* slate-200 */
    border: 1px solid rgb(30 41 59);
    /* slate-800 (dark mode) */
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 0.75rem;
    /* rounded-xl */
    overflow: hidden;
}

/* 테이블 헤더 영역 */
.installations-table-header {
    background-color: white;
    background-color: rgb(15 23 42);
    /* slate-900 (dark mode) */
    padding: 1.5rem;
    /* p-6 */
    border-bottom: 1px solid rgb(241 245 249);
    /* slate-100 */
    border-bottom: 1px solid rgb(30 41 59);
    /* slate-800 (dark mode) */
}

.installations-table-title-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
    margin-bottom: 1.5rem;
    /* mb-6 */
}

.installations-table-title-icon {
    color: #3b82f6;
    /* primary */
}

.installations-table-title {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 900;
    letter-spacing: -0.025em;
}

/* 필터 그리드 - Flexbox 레이아웃 */
.installations-filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* gap-4 */
    align-items: flex-end;
}

/* 필터 그룹 - flex column 컨테이너 */
.installations-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    /* gap-1.5 */
}

/* 필터 라벨 텍스트 */
.installations-filter-label {
    font-size: 0.8125rem;
    /* text-[13px] */
    font-weight: 600;
    color: rgb(148 163 184);
    /* slate-400 */
}

/* 검색 래퍼 - flex: 1로 남은 공간 채움 */
.installations-search-wrapper {
    flex: 1;
    min-width: 200px;
}

/* Select 박스 */
.installations-select {
    min-width: 160px;
    height: 2.5rem;
    font-size: 0.875rem;
    border: 1px solid rgb(51 65 85);
    /* panel-border */
    background-color: rgb(30 41 59);
    /* slate-800 */
    border-radius: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    outline: none;
    cursor: pointer;
    color: rgb(226 232 240);
    /* slate-200 */
}

.installations-select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    /* focus:ring-primary */
    border-color: #3b82f6;
    /* focus:border-primary */
}

/* 체크박스 그룹 */
.installations-checkbox-group {
    display: flex;
    gap: 1rem;
    /* gap-4 */
    height: 2.5rem;
    /* h-10 */
    align-items: center;
    padding-left: 0.5rem;
    /* px-2 */
}

.installations-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 600;
    cursor: pointer;
}

.installations-checkbox {
    width: 1rem;
    /* w-4 */
    height: 1rem;
    /* h-4 */
    border-radius: 0.25rem;
    /* rounded */
    border: 1px solid rgb(203 213 225);
    /* slate-300 */
    color: #3b82f6;
    /* primary */
    cursor: pointer;
}

.installations-checkbox:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    /* focus:ring-primary */
}

.installations-checkbox-text-emerald-500 {
    color: rgb(16 185 129);
}

.installations-checkbox-text-amber-500 {
    color: rgb(245 158 11);
}

/* 검색 그룹 - flex: 1로 남은 공간 채움 */
.installations-search-group {
    flex: 1;
    min-width: 300px;
}

/* 검색 컨테이너 */
.installations-search-container {
    position: relative;
}

.installations-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(148 163 184);
    /* slate-400 */
    font-size: 1.125rem;
    pointer-events: none;
}

.installations-search-input {
    width: 100%;
    height: 2.5rem;
    font-size: 0.875rem;
    border: 1px solid rgb(51 65 85);
    /* panel-border */
    background-color: rgb(15 23 42);
    /* dashboard-bg */
    border-radius: 0.5rem;
    padding-left: 2.5rem;
    padding-right: 1rem;
    outline: none;
    color: rgb(226 232 240);
    /* slate-200 */
    box-sizing: border-box;
}

.installations-search-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    /* focus:ring-primary */
    border-color: #3b82f6;
}

/* 조회 버튼 */
.installations-search-button {
    background-color: #3b82f6;
    /* primary */
    color: white;
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
    height: 2.5rem;
    /* h-10 */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 900;
    border-radius: 0.5rem;
    /* rounded-lg */
    border: none;
    cursor: pointer;
    transition: all 150ms;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.installations-search-button:hover {
    background-color: #2563eb;
    /* blue-700 */
}

/* Primary 버튼 (조회) */
.installations-button-primary {
    height: 2.5rem;
    padding: 0 1.5rem;
    background-color: #3b82f6;
    /* primary */
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    /* rounded-md */
    cursor: pointer;
    transition: all 150ms;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.installations-button-primary:hover {
    background-color: #2563eb;
}


/* 탭 영역 */
.installations-tabs {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(241 245 249);
    /* slate-100 */
    border-bottom: 1px solid rgb(30 41 59);
    /* slate-800 (dark mode) */
    padding: 1rem 1.5rem;
    /* px-6 py-4 */
    background-color: rgba(248, 250, 252, 0.5);
    /* slate-50/50 */
    background-color: rgba(15, 23, 42, 0.5);
    /* slate-900 (dark mode) */
    overflow-x: auto;
    gap: 0.5rem;
    /* gap-2 */
}

.installations-tabs::-webkit-scrollbar {
    display: none;
}

.installations-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 탭 버튼 */
.installations-tab {
    padding: 0.375rem 1.25rem;
    /* px-5 py-1.5 */
    font-size: 0.75rem;
    /* text-[12px] */
    font-weight: 700;
    transition: all 150ms;
    white-space: nowrap;
    border-radius: 9999px;
    /* rounded-pill */
    border: 1px solid transparent;
    cursor: pointer;
    background: none;
}

.installations-tab-active {
    background-color: #3b82f6;
    /* primary */
    color: white;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
    border: none;
}

.installations-tab-inactive {
    color: rgb(100 116 139);
    /* slate-500 */
    border: none;
}

.installations-tab-inactive:hover {
    color: rgb(30 41 59);
    /* slate-800 */
    color: rgb(241 245 249);
    /* slate-100 (dark mode) */
    background-color: rgb(241 245 249);
    /* slate-100 */
    background-color: rgb(30 41 59);
    /* slate-800 (dark mode) */
}

/* 테이블 컨테이너 (스크롤) */
.installations-data-table-container {
    overflow-x: auto;
    scrollbar-width: thin;
}

.installations-data-table-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.installations-data-table-container::-webkit-scrollbar-thumb {
    background: rgb(203 213 225);
    /* slate-300 */
    border-radius: 3px;
}

/* 유틸리티 그리드 테이블 */
.installations-utilitarian-grid {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.75rem;
    /* text-[12px] */
}

.installations-utilitarian-grid thead tr {
    background-color: rgb(248 250 252);
    /* slate-50 */
    background-color: rgba(30, 41, 59, 0.8);
    /* slate-800/80 (dark mode) */
    border-bottom: 1px solid rgb(226 232 240);
    /* slate-200 */
    border-bottom: 1px solid rgb(51 65 85);
    /* slate-700 (dark mode) */
}

.installations-utilitarian-grid th {
    padding: 0.75rem;
    /* px-3 py-3 */
    font-weight: 700;
    color: rgb(100 116 139);
    /* slate-500 */
    color: rgb(148 163 184);
    /* slate-400 (dark mode) */
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.installations-utilitarian-grid tbody tr {
    border-bottom: 1px solid rgb(241 245 249);
    /* slate-100 */
    border-bottom: 1px solid rgb(30 41 59);
    /* slate-800 (dark mode) */
}

.installations-utilitarian-grid tbody tr:hover {
    background-color: rgba(59, 130, 246, 0.05);
    /* blue-50/50 */
    background-color: rgba(30, 41, 59, 0.4);
    /* slate-800/40 (dark mode) */
}

.installations-utilitarian-grid tbody tr.installations-row-highlight {
    background-color: rgba(241, 245, 249, 0.2);
    /* slate-50/20 */
    background-color: rgba(30, 41, 59, 0.3);
    /* dark mode */
}

.installations-utilitarian-grid td {
    padding: 0.625rem 0.75rem;
    /* px-3 py-2.5 */
    color: rgb(30 41 59);
    /* slate-800 */
    color: rgb(226 232 240);
    /* slate-200 (dark mode) */
}

.installations-utilitarian-grid td.installations-cell-mono {
    font-family: monospace;
    color: rgb(100 116 139);
    /* slate-500 */
}

.installations-utilitarian-grid td.installations-cell-primary {
    font-weight: 900;
    color: #3b82f6;
    /* primary */
}

.installations-utilitarian-grid td.installations-cell-bold {
    font-weight: 700;
}

/* 상태 배지 */
.installations-status-pill {
    padding: 0.125rem 0.5rem;
    /* px-2 py-0.5 */
    border-radius: 9999px;
    /* rounded-pill */
    font-size: 0.625rem;
    /* text-[10px] */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.installations-status-pill-emerald {
    background-color: rgb(209 250 229);
    /* emerald-100 */
    color: rgb(21 128 61);
    /* emerald-700 */
    background-color: rgba(5, 150, 105, 0.4);
    /* emerald-900/40 (dark mode) */
    color: rgb(16 185 129);
    /* emerald-400 */
}

.installations-status-pill-amber {
    background-color: rgb(254 243 199);
    /* amber-100 */
    color: rgb(180 83 9);
    /* amber-700 */
    background-color: rgba(217, 119, 6, 0.4);
    /* amber-900/40 (dark mode) */
    color: rgb(245 158 11);
    /* amber-400 */
}

.installations-status-pill-red {
    background-color: rgb(254 226 226);
    /* red-100 */
    color: rgb(185 28 28);
    /* red-700 */
    background-color: rgba(185, 28, 28, 0.4);
    /* red-900/40 (dark mode) */
    color: rgb(248 113 113);
    /* red-400 */
}

/* 테이블 푸터 */
.installations-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    /* px-6 py-4 */
    background-color: white;
    background-color: rgb(15 23 42);
    /* slate-900 (dark mode) */
    border-top: 1px solid rgb(241 245 249);
    /* slate-100 */
    border-top: 1px solid rgb(30 41 59);
    /* slate-800 (dark mode) */
}

.installations-table-info {
    font-size: 0.6875rem;
    /* text-[11px] */
    font-weight: 700;
    color: rgb(148 163 184);
    /* slate-400 */
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

/* 페이지네이션 */
.installations-pagination {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    /* gap-1.5 */
}

.installations-pagination-button {
    width: 2rem;
    /* size-8 */
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(226 232 240);
    /* slate-200 */
    border: 1px solid rgb(51 65 85);
    /* slate-700 (dark mode) */
    border-radius: 0.5rem;
    /* rounded-lg */
    background-color: white;
    background-color: rgb(30 41 59);
    /* slate-800 (dark mode) */
    color: rgb(148 163 184);
    /* slate-400 */
    cursor: pointer;
    transition: background-color 150ms;
    border: none;
}

.installations-pagination-button:hover {
    background-color: rgb(248 250 252);
    /* slate-50 */
    background-color: rgb(51 65 85);
    /* slate-700 (dark mode) */
}

.installations-pagination-button-icon {
    font-size: 1.125rem;
    /* text-lg */
}

.installations-pagination-numbers {
    display: flex;
    gap: 0.375rem;
    /* gap-1.5 */
    margin-left: 0.75rem;
    /* mx-3 */
    margin-right: 0.75rem;
}

.installations-pagination-number {
    width: 2rem;
    /* size-8 */
    height: 2rem;
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 900;
    border-radius: 0.5rem;
    /* rounded-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms;
    border: none;
}

.installations-pagination-number-active {
    background-color: #3b82f6;
    /* primary */
    color: white;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
}

.installations-pagination-number-inactive {
    border: 1px solid rgb(226 232 240);
    /* slate-200 */
    border: 1px solid rgb(51 65 85);
    /* slate-700 (dark mode) */
    background-color: white;
    background-color: rgb(30 41 59);
    /* slate-800 (dark mode) */
    color: rgb(71 85 105);
    /* slate-600 */
    color: rgb(148 163 184);
    /* slate-400 (dark mode) */
}

.installations-pagination-number-inactive:hover {
    background-color: rgb(248 250 252);
    /* slate-50 */
    background-color: rgb(51 65 85);
    /* slate-700 (dark mode) */
}

.installations-pagination-ellipsis {
    width: 2rem;
    /* size-8 */
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    /* text-xs */
    color: rgb(148 163 184);
    /* slate-400 */
}

/* 액션 버튼 영역 */
.installations-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2.5rem;
    /* mb-10 */
}

.installations-actions-group {
    display: flex;
    gap: 0.75rem;
    /* gap-3 */
}

.installations-action-button {
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
    height: 2.75rem;
    /* h-11 */
    border-radius: 0.5rem;
    /* rounded-lg */
    border-width: 2px;
    border: 2px solid rgb(226 232 240);
    /* slate-200 */
    border: 2px solid rgb(51 65 85);
    /* slate-700 (dark mode) */
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 900;
    color: rgb(71 85 105);
    /* slate-600 */
    color: rgb(209 213 219);
    /* slate-300 (dark mode) */
    cursor: pointer;
    transition: all 150ms;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
    background: none;
}

.installations-action-button:hover {
    background-color: rgb(248 250 252);
    /* slate-50 */
    background-color: rgb(30 41 59);
    /* slate-800 (dark mode) */
}

.installations-action-button-icon {
    font-size: 1.125rem;
    /* text-lg */
}