/* /Layout/MainLayout.razor.rz.scp.css */


main[b-8gxbjxzw9z] {
    width: 100vw;
    height: 100vh;
}

page[b-8gxbjxzw9z] {
    width: 100%;
    height: 100%;
}
/* /Pages/Components/Admin/AdminPage.razor.rz.scp.css */
.settings-container[b-c6jfi5qrop] {
    width: 100%;
    padding: 0 2rem;
}

.settings-header[b-c6jfi5qrop] {
    margin: 2rem 0;
    color: #1a73e8;
}

    .settings-header h1[b-c6jfi5qrop] {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .settings-header p[b-c6jfi5qrop] {
        color: #5f6368;
    }

.settings-grid[b-c6jfi5qrop] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.settings-card[b-c6jfi5qrop] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .settings-card:hover[b-c6jfi5qrop] {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

.card-header[b-c6jfi5qrop] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .card-header i[b-c6jfi5qrop] {
        font-size: 1.5rem;
        color: #1a73e8;
        margin-right: 1rem;
    }

    .card-header h2[b-c6jfi5qrop] {
        font-size: 1.25rem;
        font-weight: 500;
        color: #202124;
    }

.card-footer[b-c6jfi5qrop] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8eaed;
}

.current-setting[b-c6jfi5qrop] {
    font-size: 0.875rem;
    color: #5f6368;
}

/* 다이얼로그 스타일 */
.dialog-overlay[b-c6jfi5qrop] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content[b-c6jfi5qrop] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.dialog-header[b-c6jfi5qrop] {
    padding: 1.5rem;
    border-bottom: 1px solid #e8eaed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-body[b-c6jfi5qrop] {
    padding: 1.5rem;
}

.dialog-footer[b-c6jfi5qrop] {
    padding: 1.5rem;
    border-top: 1px solid #e8eaed;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn[b-c6jfi5qrop] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-c6jfi5qrop] {
    background: #1a73e8;
    color: white;
    border: none;
}

    .btn-primary:hover[b-c6jfi5qrop] {
        background: #1557b0;
    }

.btn-secondary[b-c6jfi5qrop] {
    background: white;
    color: #5f6368;
    border: 1px solid #dadce0;
}

    .btn-secondary:hover[b-c6jfi5qrop] {
        background: #f1f3f4;
    }

.modal-overlay[b-c6jfi5qrop] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.profile-actions[b-c6jfi5qrop] {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.btn-primary-cancel[b-c6jfi5qrop] {
    background-color: white;
    color: black;
    border: 2px solid #e2e8f0;
}
/* /Pages/Components/Admin/DataDisplaySettingForm.razor.rz.scp.css */
.setting-form[b-9ocnpxc4n6] {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn-b-9ocnpxc4n6 0.3s ease;
}

.tabs-container[b-9ocnpxc4n6] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.tabs-header[b-9ocnpxc4n6] {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.select-all-container[b-9ocnpxc4n6] {
    padding: 0 0.375rem;
}

.tab-button[b-9ocnpxc4n6] {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}

    .tab-button:hover[b-9ocnpxc4n6] {
        color: #1a73e8;
    }

    .tab-button.active[b-9ocnpxc4n6] {
        color: #1a73e8;
        background-color: #fff;
    }

        .tab-button.active[b-9ocnpxc4n6]::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #1a73e8;
        }

.tabs-content[b-9ocnpxc4n6] {
    position: relative;
    min-height: 400px;
}

.tab-panel[b-9ocnpxc4n6] {
    display: none;
    padding: 0;
    animation: slideUp-b-9ocnpxc4n6 0.3s ease;
}

    .tab-panel.active[b-9ocnpxc4n6] {
        display: block;
    }

.panel-layout[b-9ocnpxc4n6] {
    display: flex;
    height: 100%;
}

.checkbox-panel[b-9ocnpxc4n6] {
    flex: 1;
    padding: 1.5rem;
    border-right: 1px solid #e0e0e0;
    height: 600px;
    overflow-y: auto;
}

.preview-panel[b-9ocnpxc4n6] {
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
    height: 600px;
    overflow-y: auto;
}

.preview-title[b-9ocnpxc4n6] {
    font-size: 1.1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a73e8;
}

.settings-list-box[b-9ocnpxc4n6] {
    width: 100%;
    height: 350px;
    border: 1px solid #dadce0;
    border-radius: 4px;
}

[b-9ocnpxc4n6] .dxbl-list-box {
    height: auto;
}

[b-9ocnpxc4n6] .dx-list-item {
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #202124;
}

    [b-9ocnpxc4n6] .dx-list-item:hover {
        background-color: #f8f9fa;
    }

    [b-9ocnpxc4n6] .dx-list-item.dx-state-focused {
        background-color: #e8f0fe;
    }

[b-9ocnpxc4n6] .dx-checkbox {
    margin-right: 8px;
}

.selected-items[b-9ocnpxc4n6] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.selected-item[b-9ocnpxc4n6] {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    animation: fadeIn-b-9ocnpxc4n6 0.3s ease;
}

    .selected-item:hover[b-9ocnpxc4n6] {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

.item-text[b-9ocnpxc4n6] {
    font-weight: 500;
    color: #202124;
}

.item-value[b-9ocnpxc4n6] {
    color: #5f6368;
    font-size: 0.9rem;
}

.no-selection[b-9ocnpxc4n6] {
    padding: 2rem;
    text-align: center;
    color: #5f6368;
    background: white;
    border-radius: 4px;
    font-style: italic;
}

.dialog-footer[b-9ocnpxc4n6] {
    padding: 16px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel[b-9ocnpxc4n6] {
    padding: 8px 16px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.2s;
}

    .btn-cancel:hover[b-9ocnpxc4n6] {
        background: #f1f3f4;
    }

.btn-save[b-9ocnpxc4n6] {
    padding: 8px 16px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

    .btn-save:hover[b-9ocnpxc4n6] {
        background: #1d4ed8;
    }

@keyframes fadeIn-b-9ocnpxc4n6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-9ocnpxc4n6 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 세련된 스크롤바 스타일 */
.checkbox-panel[b-9ocnpxc4n6]::-webkit-scrollbar,
.preview-panel[b-9ocnpxc4n6]::-webkit-scrollbar {
    width: 6px;
}

.checkbox-panel[b-9ocnpxc4n6]::-webkit-scrollbar-track,
.preview-panel[b-9ocnpxc4n6]::-webkit-scrollbar-track {
    background: transparent;
}

.checkbox-panel[b-9ocnpxc4n6]::-webkit-scrollbar-thumb,
.preview-panel[b-9ocnpxc4n6]::-webkit-scrollbar-thumb {
    background: rgba(160, 160, 160, 0.5);
    border-radius: 10px;
    transition: background 0.2s ease;
}

    .checkbox-panel[b-9ocnpxc4n6]::-webkit-scrollbar-thumb:hover,
    .preview-panel[b-9ocnpxc4n6]::-webkit-scrollbar-thumb:hover {
        background: rgba(130, 130, 130, 0.7);
    }

/* Firefox용 스크롤바 스타일 */
.checkbox-panel[b-9ocnpxc4n6],
.preview-panel[b-9ocnpxc4n6] {
    scrollbar-width: thin;
    scrollbar-color: rgba(160, 160, 160, 0.5) transparent;
}
/* /Pages/Components/Admin/DataExportSettingForm.razor.rz.scp.css */
.setting-form[b-sgaofhanbo] {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn-b-sgaofhanbo 0.3s ease;
}

.tabs-container[b-sgaofhanbo] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.tabs-header[b-sgaofhanbo] {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.tab-button[b-sgaofhanbo] {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}

    .tab-button:hover[b-sgaofhanbo] {
        color: #1a73e8;
    }

    .tab-button.active[b-sgaofhanbo] {
        color: #1a73e8;
        background-color: #fff;
    }

        .tab-button.active[b-sgaofhanbo]::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #1a73e8;
        }

.tabs-content[b-sgaofhanbo] {
    position: relative;
    min-height: 400px;
}

.tab-panel[b-sgaofhanbo] {
    display: none;
    padding: 0;
    animation: slideUp-b-sgaofhanbo 0.3s ease;
}

    .tab-panel.active[b-sgaofhanbo] {
        display: block;
    }

.panel-layout[b-sgaofhanbo] {
    display: flex;
    height: 100%;
}

.checkbox-panel[b-sgaofhanbo] {
    flex: 1;
    padding: 1.5rem;
    border-right: 1px solid #e0e0e0;
    height: 600px;
    overflow-y: auto;
}

.select-all-container[b-sgaofhanbo] {
    padding: 0 0.375rem;
}

.preview-panel[b-sgaofhanbo] {
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
    height: 600px;
    overflow-y: auto;
}

.preview-title[b-sgaofhanbo] {
    font-size: 1.1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a73e8;
}

.settings-list-box[b-sgaofhanbo] {
    width: 100%;
    height: 350px;
    border: 1px solid #dadce0;
    border-radius: 4px;
}

[b-sgaofhanbo] .dx-list-item {
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #202124;
}

    [b-sgaofhanbo] .dx-list-item:hover {
        background-color: #f8f9fa;
    }

    [b-sgaofhanbo] .dx-list-item.dx-state-focused {
        background-color: #e8f0fe;
    }

[b-sgaofhanbo] .dx-checkbox {
    margin-right: 8px;
}

[b-sgaofhanbo] .dxbl-list-box {
    height: auto;
}

.selected-items[b-sgaofhanbo] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.selected-item[b-sgaofhanbo] {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    animation: fadeIn-b-sgaofhanbo 0.3s ease;
}

    .selected-item:hover[b-sgaofhanbo] {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

.item-text[b-sgaofhanbo] {
    font-weight: 500;
    color: #202124;
}

.item-value[b-sgaofhanbo] {
    color: #5f6368;
    font-size: 0.9rem;
}

.no-selection[b-sgaofhanbo] {
    padding: 2rem;
    text-align: center;
    color: #5f6368;
    background: white;
    border-radius: 4px;
    font-style: italic;
}

.dialog-footer[b-sgaofhanbo] {
    padding: 16px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel[b-sgaofhanbo] {
    padding: 8px 16px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.2s;
}

    .btn-cancel:hover[b-sgaofhanbo] {
        background: #f1f3f4;
    }

.btn-save[b-sgaofhanbo] {
    padding: 8px 16px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

    .btn-save:hover[b-sgaofhanbo] {
        background: #1d4ed8;
    }

@keyframes fadeIn-b-sgaofhanbo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-sgaofhanbo {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 세련된 스크롤바 스타일 */
.checkbox-panel[b-sgaofhanbo]::-webkit-scrollbar,
.preview-panel[b-sgaofhanbo]::-webkit-scrollbar {
    width: 6px;
}

.checkbox-panel[b-sgaofhanbo]::-webkit-scrollbar-track,
.preview-panel[b-sgaofhanbo]::-webkit-scrollbar-track {
    background: transparent;
}

.checkbox-panel[b-sgaofhanbo]::-webkit-scrollbar-thumb,
.preview-panel[b-sgaofhanbo]::-webkit-scrollbar-thumb {
    background: rgba(160, 160, 160, 0.5);
    border-radius: 10px;
    transition: background 0.2s ease;
}

    .checkbox-panel[b-sgaofhanbo]::-webkit-scrollbar-thumb:hover,
    .preview-panel[b-sgaofhanbo]::-webkit-scrollbar-thumb:hover {
        background: rgba(130, 130, 130, 0.7);
    }

/* Firefox용 스크롤바 스타일 */
.checkbox-panel[b-sgaofhanbo],
.preview-panel[b-sgaofhanbo] {
    scrollbar-width: thin;
    scrollbar-color: rgba(160, 160, 160, 0.5) transparent;
}
/* /Pages/Components/Admin/NotificationSettingForm.razor.rz.scp.css */
.setting-form[b-mxfrj8oi18] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-section[b-mxfrj8oi18] {
    display: flex;
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    align-items: center; /* 수직 가운데 정렬 변경 */
}

.form-title[b-mxfrj8oi18] {
    width: 120px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center; /* 제목 수직 가운데 정렬 */
    height: 100%;
}

.form-options[b-mxfrj8oi18] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.form-check[b-mxfrj8oi18] {
    display: flex;
    align-items: center;
    gap: 10px; /* 간격 약간 늘림 */
}

.form-check-input[b-mxfrj8oi18] {
    width: 20px; /* 체크박스 크기 증가 */
    height: 20px; /* 체크박스 크기 증가 */
    margin: 0;
    cursor: pointer;
    accent-color: #007bff; /* 체크박스 푸른색으로 설정 */
}

.form-check-label[b-mxfrj8oi18] {
    font-size: 14px;
    user-select: none;
    cursor: pointer;
}

.dialog-footer[b-mxfrj8oi18] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
}

.btn-cancel[b-mxfrj8oi18] {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
}

.btn-save[b-mxfrj8oi18] {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-save:hover[b-mxfrj8oi18] {
        background-color: #0069d9;
    }

.btn-cancel:hover[b-mxfrj8oi18] {
    background-color: #f1f1f1;
}
/* /Pages/Components/Admin/NotificationTestModal.razor.rz.scp.css */
body[b-se9tddeg89] {
    font-family: Arial, sans-serif;
}

.system-log-modal[b-se9tddeg89] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    height: 80vh;
    width: 90vw;
    max-width: 1600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-title[b-se9tddeg89] {
    color: #344767;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.75rem;
}

.filter-section[b-se9tddeg89] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-row[b-se9tddeg89] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.date-range[b-se9tddeg89], .filters[b-se9tddeg89], .sort-section[b-se9tddeg89] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group[b-se9tddeg89] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

    .form-group label[b-se9tddeg89] {
        font-weight: 600;
        color: #344767;
        font-size: 0.875rem;
    }

.form-control[b-se9tddeg89] {
    padding: 0.625rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s;
    min-width: 140px;
}

    .form-control:focus[b-se9tddeg89] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
        outline: none;
    }

.filter-buttons[b-se9tddeg89] {
    display: flex;
    justify-content: flex-end;
}

.log-table[b-se9tddeg89] {
    flex: 1;
    overflow: auto;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    max-height: calc(80vh - 200px);
}

    .log-table:hover[b-se9tddeg89] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

.btn-primary[b-se9tddeg89] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 43px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

    .btn-primary:hover[b-se9tddeg89] {
        background-color: #0056b3;
    }

.btn-reset[b-se9tddeg89] {
    margin-bottom: 0.5rem;
    height: 43px;
    padding: 0.625rem 1rem;
    background-color: #eaeaea;
    color: #344767;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-reset:hover[b-se9tddeg89] {
        background-color: #d9d9d9;
    }

.button-group[b-se9tddeg89] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

table[b-se9tddeg89] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

th[b-se9tddeg89] {
    background-color: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #344767;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e9ecef;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    th:nth-child(1)[b-se9tddeg89] {
        width: 18%;
    }

    th:nth-child(2)[b-se9tddeg89] {
        width: 15%;
    }

    th:nth-child(3)[b-se9tddeg89] {
        width: 15%;
    }

    th:nth-child(4)[b-se9tddeg89] {
        width: 52%;
    }

td[b-se9tddeg89] {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    td:nth-child(4)[b-se9tddeg89] {
        white-space: normal;
        word-break: break-word;
    }

tr:hover[b-se9tddeg89] {
    background-color: #f8f9fa;
}

.pagination[b-se9tddeg89] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-page[b-se9tddeg89] {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    background: white;
    color: #495057;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

    .btn-page:hover:not(:disabled)[b-se9tddeg89] {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }

    .btn-page:disabled[b-se9tddeg89] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.page-info[b-se9tddeg89] {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
}
/* 스크롤바 커스터마이징 */
.log-table[b-se9tddeg89] {
    scrollbar-width: thin;
    scrollbar-color: #007bff #f8f9fa;
}

    .log-table[b-se9tddeg89]::-webkit-scrollbar {
        width: 8px;
    }

    .log-table[b-se9tddeg89]::-webkit-scrollbar-track {
        background: #f8f9fa;
        border-radius: 4px;
    }

    .log-table[b-se9tddeg89]::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 4px;
    }

        .log-table[b-se9tddeg89]::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }

.footer-container[b-se9tddeg89] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    width: 100%;
}

.pagination-wrapper[b-se9tddeg89] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.close-button-wrapper[b-se9tddeg89] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 0;
}
/* /Pages/Components/Admin/SettingDialog.razor.rz.scp.css */
.dialog-overlay[b-qzdffl5vc6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-qzdffl5vc6 0.2s ease-out;
}

.dialog-container[b-qzdffl5vc6] {
    background: white;
    width: 800px;
    border: 1px solid black;
    animation: slideUp-b-qzdffl5vc6 0.3s ease-out;
}

.dialog-header[b-qzdffl5vc6] {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

    .dialog-header h2[b-qzdffl5vc6] {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.close-button[b-qzdffl5vc6] {
    cursor: pointer;
    font-size: 24px;
    color: #999;
}

.dialog-content[b-qzdffl5vc6] {
    padding: 20px;
}

.dialog-footer[b-qzdffl5vc6] {
    padding: 16px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-cancel[b-qzdffl5vc6] {
    padding: 8px 16px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
}

.btn-save[b-qzdffl5vc6] {
    padding: 8px 16px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

    .btn-save:hover[b-qzdffl5vc6] {
        background: #1d4ed8;
    }

@keyframes fadeIn-b-qzdffl5vc6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-qzdffl5vc6 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Pages/Components/Admin/SystemLogModal.razor.rz.scp.css */
body[b-bhogqz5i53] {
    font-family: Arial, sans-serif;
}

.system-log-modal[b-bhogqz5i53] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    height: 80vh;
    width: 90vw;
    max-width: 1600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-title[b-bhogqz5i53] {
    color: #344767;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.75rem;
}

.message-container[b-bhogqz5i53] {
    cursor: pointer;
}

.message-preview[b-bhogqz5i53] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 550px;
}

    .message-preview.expanded[b-bhogqz5i53] {
        white-space: normal;
        word-break: break-word;
    }

.filter-section[b-bhogqz5i53] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-row[b-bhogqz5i53] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.date-range[b-bhogqz5i53], .filters[b-bhogqz5i53], .sort-section[b-bhogqz5i53] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group[b-bhogqz5i53] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

    .form-group label[b-bhogqz5i53] {
        font-weight: 600;
        color: #344767;
        font-size: 0.875rem;
    }

.form-control[b-bhogqz5i53] {
    padding: 0.625rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s;
    min-width: 140px;
}

    .form-control:focus[b-bhogqz5i53] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
        outline: none;
    }

.filter-buttons[b-bhogqz5i53] {
    display: flex;
    justify-content: flex-end;
}

.log-table[b-bhogqz5i53] {
    flex: 1;
    overflow: auto;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    max-height: calc(80vh - 200px);
}

    .log-table:hover[b-bhogqz5i53] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

.btn-primary[b-bhogqz5i53] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 43px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

    .btn-primary:hover[b-bhogqz5i53] {
        background-color: #0056b3;
    }

.btn-reset[b-bhogqz5i53] {
    margin-bottom: 0.5rem;
    height: 43px;
    padding: 0.625rem 1rem;
    background-color: #eaeaea;
    color: #344767;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-reset:hover[b-bhogqz5i53] {
        background-color: #d9d9d9;
    }

.button-group[b-bhogqz5i53] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

table[b-bhogqz5i53] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

th[b-bhogqz5i53] {
    background-color: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #344767;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e9ecef;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    th:nth-child(1)[b-bhogqz5i53] {
        width: 18%;
    }

    th:nth-child(2)[b-bhogqz5i53] {
        width: 15%;
    }

    th:nth-child(3)[b-bhogqz5i53] {
        width: 15%;
    }

    th:nth-child(4)[b-bhogqz5i53] {
        width: 52%;
    }

td[b-bhogqz5i53] {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    td:nth-child(4)[b-bhogqz5i53] {
        white-space: normal;
        word-break: break-word;
    }

tr:hover[b-bhogqz5i53] {
    background-color: #f8f9fa;
}

.pagination[b-bhogqz5i53] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-page[b-bhogqz5i53] {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    background: white;
    color: #495057;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

    .btn-page:hover:not(:disabled)[b-bhogqz5i53] {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }

    .btn-page:disabled[b-bhogqz5i53] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.page-info[b-bhogqz5i53] {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
}
/* 스크롤바 커스터마이징 */
.log-table[b-bhogqz5i53] {
    scrollbar-width: thin;
    scrollbar-color: #007bff #f8f9fa;
}

    .log-table[b-bhogqz5i53]::-webkit-scrollbar {
        width: 8px;
    }

    .log-table[b-bhogqz5i53]::-webkit-scrollbar-track {
        background: #f8f9fa;
        border-radius: 4px;
    }

    .log-table[b-bhogqz5i53]::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 4px;
    }

        .log-table[b-bhogqz5i53]::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }

.footer-container[b-bhogqz5i53] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    width: 100%;
}

.pagination-wrapper[b-bhogqz5i53] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.close-button-wrapper[b-bhogqz5i53] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 0;
}
/* /Pages/Components/Admin/UnitsSettingsForm.razor.rz.scp.css */
.setting-form[b-hvnlz7wlvd] {
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.form-grid[b-hvnlz7wlvd] {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* 1열(이름) - 2열(단위 선택) - 3열(소수점 선택) */
    grid-template-rows: repeat(6, auto);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

/* 1행: 소수점 자리수 라벨 */
.form-group.decimal-label[b-hvnlz7wlvd] {
    grid-column: 3 / 4; /* 3열에 배치 */
    justify-self: start;
    font-weight: 600;
}

/* 2~5행: 단위 선택 및 소수점 자리수 */
.form-group[b-hvnlz7wlvd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group label[b-hvnlz7wlvd] {
        font-weight: 500;
        font-size: 1rem;
        text-align: end;
    }

    .form-group select[b-hvnlz7wlvd] {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #dadce0;
        border-radius: 4px;
        font-size: 1rem;
    }

    /* 6행: 시간 단위 */
    .form-group.time-unit[b-hvnlz7wlvd] {
        grid-column: 1 / 2;
    }

    .form-group.time-selector[b-hvnlz7wlvd] {
        grid-column: 2 / 3;
    }

/* 버튼 영역 */
.dialog-footer[b-hvnlz7wlvd] {
    padding: 16px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-cancel[b-hvnlz7wlvd] {
    padding: 8px 16px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
}

.btn-save[b-hvnlz7wlvd] {
    padding: 8px 16px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

    .btn-save:hover[b-hvnlz7wlvd] {
        background: #1d4ed8;
    }
/* /Pages/Components/DataSheetView.razor.rz.scp.css */
.series-grid-wrapper[b-j4tkrnnl3q] {
    width: 100%;
    height: calc(100% - 72px );
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: auto;
}

.series-header-row[b-j4tkrnnl3q],
.series-row[b-j4tkrnnl3q] {
    display: flex;
    flex-direction: row;
    min-width: max-content;
}

.series-cell-header[b-j4tkrnnl3q] {
    width: 250px;
    min-width: 250px;
    padding: 8px 4px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid #ccc;
    white-space: nowrap;
    background-color: #004a76;
    color: white;
    flex-shrink: 0;
}

.series-cell[b-j4tkrnnl3q] {
    width: 250px;
    min-width: 250px;
    padding: 4px;
    border: 0.5px solid #eee;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.no-cell-header[b-j4tkrnnl3q] {
    width: 80px;
    min-width: 80px;
    padding: 8px 4px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid #ccc;
    white-space: nowrap;
    background-color: #004a76;
    color: white;
    flex-shrink: 0;
}

.no-cell[b-j4tkrnnl3q] {
    width: 80px;
    min-width: 80px;
    padding: 4px;
    border: 0.5px solid #eee;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.table-scroll-container[b-j4tkrnnl3q] {
    overflow-y: auto;
    box-sizing: border-box;
    min-height: 0;
    min-width: max-content;
    padding-bottom: 50px;
}

.datasheet-page-button[b-j4tkrnnl3q] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .datasheet-page-button:hover[b-j4tkrnnl3q] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

    .datasheet-page-button:disabled[b-j4tkrnnl3q] {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .datasheet-page-button.active[b-j4tkrnnl3q] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }
/* /Pages/Components/GraphLineInfo.razor.rz.scp.css */
.graph-line-panel[b-6uo8bcz4ev] {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  font-size: 13px;
}

/* 상단 체크박스 영역 - 전체 높이 사용 */
.lineinfo-top[b-6uo8bcz4ev] {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  max-height: 100%; /* 🎯 전체 높이 사용 */
  height: 100%; /* 🎯 명시적 높이 설정 */
}

/* 하단 색상표 영역 - 숨김 처리 */
.lineinfo-bottom[b-6uo8bcz4ev] {
  display: none; /* 🎯 하단 범례 완전히 숨김 */
}

/* 🎯 커스텀 범례 컨테이너 스타일 */
.lightning-chart-legend[b-6uo8bcz4ev] {
  width: 100%;
  height: 100%;
  padding: 8px;
  background: #f8fafc;
  border-radius: 8px;
}

/* 범례가 생성되면 플레이스홀더 숨김 */
.lightning-chart-legend + .legend-placeholder[b-6uo8bcz4ev] {
  display: none;
}

.lightning-chart-legend .legend-header[b-6uo8bcz4ev] {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.lightning-chart-legend .legend-items[b-6uo8bcz4ev] {
  max-height: calc(100% - 40px) !important;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #f1f1f1;
}

/* 웹킷 브라우저용 스크롤바 스타일 */
.lightning-chart-legend .legend-items[b-6uo8bcz4ev]::-webkit-scrollbar {
  width: 6px;
}

.lightning-chart-legend .legend-items[b-6uo8bcz4ev]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.lightning-chart-legend .legend-items[b-6uo8bcz4ev]::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.lightning-chart-legend .legend-items[b-6uo8bcz4ev]::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* 범례 아이템 추가 스타일 */
.lightning-chart-legend .legend-item:hover[b-6uo8bcz4ev] {
  background: #edf2f7 !important;
  border-color: #cbd5e0 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.lightning-chart-legend .legend-item:active[b-6uo8bcz4ev] {
  transform: translateY(0) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}

/* 개별 Y 그룹 */
.y-group[b-6uo8bcz4ev] {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 8px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Y 그룹 헤더 */
.y-group-header[b-6uo8bcz4ev] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  background-color: #f1f1f1;
  padding: 6px;
  border-radius: 4px;
}

/* 토글 아이콘 */
.toggle-icon[b-6uo8bcz4ev] {
  cursor: pointer;
  width: 18px;
  text-align: center;
  font-size: 12px;
}

/* 하위 시리즈 체크박스 리스트 */
.series-list[b-6uo8bcz4ev] {
  margin-top: 8px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 개별 시리즈 */
.series-item[b-6uo8bcz4ev] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
}

.color-box[b-6uo8bcz4ev] {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 2px 0;
  border-bottom: 1px solid #eee;
}

.color-label[b-6uo8bcz4ev] {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 색상 미리보기 */
.color-swatch[b-6uo8bcz4ev] {
  width: 24px; /* ⬅️ 수직선처럼 짧게 줄임 */
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
/* /Pages/Components/GraphSetting/ActionButtons.razor.rz.scp.css */
.profile-actions[b-c1lsu3x2kp] {
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.btn[b-c1lsu3x2kp] {
  padding: 0 1.5rem;
  align-items: center;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  height: 40px;
}

.btn-primary1[b-c1lsu3x2kp] {
  background-color: #4299e1;
  color: white;
  border: none;
  font-size: 12px;
  align-content: center;
}

.btn-primary1:disabled[b-c1lsu3x2kp],
.btn-primary:disabled[b-c1lsu3x2kp] {
  background-color: #a3c5e9;
  color: #eaeaea;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-primary[b-c1lsu3x2kp] {
  height: 40px;
}

/* 스피너 관련 스타일 */
.spinner-border-sm[b-c1lsu3x2kp] {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
  margin-right: 0.3rem;
  vertical-align: middle;
}

/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-c1lsu3x2kp] {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
  text-align: center;
}

.settings-card[b-c1lsu3x2kp] {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.error-message[b-c1lsu3x2kp] {
  width: 100%;
  color: #dc3545;
  font-size: 0.875rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  visibility: hidden;
  margin-top: 1rem;
  justify-content: center;
}

.error-message.show[b-c1lsu3x2kp] {
  visibility: visible;
}
/* /Pages/Components/GraphSetting/BatterySelectionPanel.razor.rz.scp.css */
.left-panel[b-ifzrvem577] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-header[b-ifzrvem577] {
    padding: 20px;
    padding-bottom: 0;
}

    .panel-header h3[b-ifzrvem577] {
        font-size: 18px;
        font-weight: 600;
        color: #2d3748;
        margin: 0;
    }

.data-table[b-ifzrvem577] {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    .data-table th[b-ifzrvem577] {
        height: 40px;
        text-align: center;
        font-weight: 600;
        color: #2d3748;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }

    .data-table td[b-ifzrvem577] {
        height: 40px;
        padding: 8px;
        text-align: center;
        vertical-align: middle;
        border: 1px solid #e2e8f0;
    }

    .data-table tr:hover[b-ifzrvem577] {
        background: #f8fafc;
    }

.selected-row[b-ifzrvem577] {
    background-color: #e0f7fa;
    font-weight: bold;
}
/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-ifzrvem577] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}

.settings-card[b-ifzrvem577] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.error-message[b-ifzrvem577] {
    width: 100%;
    color: #dc3545;
    font-size: 0.875rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    margin-top: 1rem;
    justify-content: center;
}

    .error-message.show[b-ifzrvem577] {
        visibility: visible;
    }
/* /Pages/Components/GraphSetting/CycleRangeSettings.razor.rz.scp.css */
.cycle-section[b-nuqrsjipsy] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: 100px;
}

.input-controls[b-nuqrsjipsy] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .input-controls input[b-nuqrsjipsy] {
        height: 30px;
    }

.input-group[b-nuqrsjipsy] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
}

    .input-group label[b-nuqrsjipsy] {
        min-width: 40px;
        text-align: right;
        font-size: 14px;
        color: #4a5568;
    }

    .input-group input[b-nuqrsjipsy] {
        width: 80px;
        max-width: 80px;
        padding: 4px 8px;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        font-size: 14px;
    }

.cycle-controls[b-nuqrsjipsy] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cycle-controls-tabs[b-nuqrsjipsy] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

    .cycle-controls-tabs button[b-nuqrsjipsy] {
        padding: 3px 12px;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        background: #f8fafc;
        color: #2d3748;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s;
        height: 30px;
    }

        .cycle-controls-tabs button:hover[b-nuqrsjipsy] {
            background: #edf2f7;
        }

        .cycle-controls-tabs button:active[b-nuqrsjipsy] {
            background: #e2e8f0;
        }

.cycle-controls-display[b-nuqrsjipsy] {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 10px;
    min-height: 80px;
    background: #f8fafc;
    font-size: 14px;
    color: #2d3748;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .cycle-controls-display p[b-nuqrsjipsy] {
        margin: 0;
    }

.cycle-item[b-nuqrsjipsy] {
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

    .cycle-item:hover[b-nuqrsjipsy] {
        background-color: #f0f0f0;
        color: black;
    }

.selected[b-nuqrsjipsy] {
    background-color: #4299e1;
    color: white;
}
/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-nuqrsjipsy] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}

.settings-card[b-nuqrsjipsy] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.error-message[b-nuqrsjipsy] {
    width: 100%;
    color: #dc3545;
    font-size: 0.875rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    margin-top: 1rem;
    justify-content: center;
}

    .error-message.show[b-nuqrsjipsy] {
        visibility: visible;
    }
/* /Pages/Components/GraphSetting/GraphSettingModal.razor.rz.scp.css */
.graph-setting-container[b-31tr9ccf72] {
    padding: 24px;
    background-color: #f5f7fa;
    width: 100%;
    height: 100%;
}

.graph-con[b-31tr9ccf72] {
    width: 100%;
    height: auto;
}

.main-content[b-31tr9ccf72] {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    background: #f5f7fa;
}

.right-panel[b-31tr9ccf72] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cards-container[b-31tr9ccf72] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

h3[b-31tr9ccf72] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}

.error-message[b-31tr9ccf72] {
    width: 100%;
    color: #dc3545;
    font-size: 0.875rem;
    height: 1.5rem; /* 고정 높이 설정 */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden; /* 기본적으로 안 보이게 */
    margin-top: 1rem;
    justify-content: center;
}

    .error-message.show[b-31tr9ccf72] {
        visibility: visible;
    }
/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-31tr9ccf72] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}

.settings-card[b-31tr9ccf72] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.error-message[b-31tr9ccf72] {
    width: 100%;
    color: #dc3545;
    font-size: 0.875rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    margin-top: 1rem;
    justify-content: center;
}

    .error-message.show[b-31tr9ccf72] {
        visibility: visible;
    }
/* /Pages/Components/GraphSetting/GraphTypeAxisSettings.razor.rz.scp.css */
.settings-card[b-m8mlaasjg5] {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fixed-height[b-m8mlaasjg5] {
  height: 550px; /* 차트 유형 선택 UI 추가로 인한 높이 조정 */
}

.fixed-h[b-m8mlaasjg5] {
  height: 220px;
}

.settings-content[b-m8mlaasjg5] {
  display: grid;
  gap: 16px;
}

.setting-group[b-m8mlaasjg5] {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.setting-group label[b-m8mlaasjg5] {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  min-width: 60px;
}

.setting-group select[b-m8mlaasjg5] {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 16px;
  color: #2d3748;
  background: #f8fafc;
  width: 140px;
}

.setting-group select:focus[b-m8mlaasjg5],
.setting-group input:focus[b-m8mlaasjg5] {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.axis-setting[b-m8mlaasjg5] {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.checkbox-list[b-m8mlaasjg5] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 225px;
  overflow-y: auto;
  padding-right: 6px;
  width: 145px;
}

.checkbox-item[b-m8mlaasjg5] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2d3748;
}

.checkbox-item input[type="checkbox"][b-m8mlaasjg5] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.label-item:hover[b-m8mlaasjg5] {
  background: #90cdf4;
  color: white;
}

.label-item:active[b-m8mlaasjg5] {
  background: #3182ce;
  color: white;
}

.checkbox-list[b-m8mlaasjg5]::-webkit-scrollbar {
  width: 6px;
}

.checkbox-list[b-m8mlaasjg5]::-webkit-scrollbar-track {
  background: #f5f7fa;
  border-radius: 4px;
}

.checkbox-list[b-m8mlaasjg5]::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 4px;
}

.checkbox-list[b-m8mlaasjg5]::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}
/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-m8mlaasjg5] {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
  text-align: center;
}

.settings-card[b-m8mlaasjg5] {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.error-message[b-m8mlaasjg5] {
  width: 100%;
  color: #dc3545;
  font-size: 0.875rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  visibility: hidden;
  margin-top: 1rem;
  justify-content: center;
}

.error-message.show[b-m8mlaasjg5] {
  visibility: visible;
}
/* /Pages/Components/GraphSetting/GraphViewTypeSelection.razor.rz.scp.css */
.graph-settings-container[b-16yhxucss7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-container[b-16yhxucss7] {
    width: 100%;
}

.radio-group[b-16yhxucss7] {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

    .radio-group label[b-16yhxucss7] {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        gap: 5px;
    }

    .radio-group input[type="radio"][b-16yhxucss7] {
        width: 18px;
        height: 18px;
        accent-color: #4299e1;
    }
/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-16yhxucss7] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}

.settings-card[b-16yhxucss7] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.error-message[b-16yhxucss7] {
    width: 100%;
    color: #dc3545;
    font-size: 0.875rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    margin-top: 1rem;
    justify-content: center;
}

    .error-message.show[b-16yhxucss7] {
        visibility: visible;
    }
/* /Pages/Components/GraphSetting/SavedSettingsModal.razor.rz.scp.css */
.modal-backdrop[b-lqywjhhnk9] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-window[b-lqywjhhnk9] {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  width: 1000px;
  height: 600px;
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
}

.modal-window h3[b-lqywjhhnk9] {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.modal-header[b-lqywjhhnk9] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-icon[b-lqywjhhnk9] {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  color: #666;
}

.close-icon:hover[b-lqywjhhnk9] {
  color: #000;
}

.search-container[b-lqywjhhnk9] {
  margin-bottom: 15px;
  width: 100%;
}

.table-container[b-lqywjhhnk9] {
  flex: 1;
  overflow: auto;
  margin-bottom: 15px;
}

.modal-table[b-lqywjhhnk9] {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.modal-table thead[b-lqywjhhnk9] {
  position: sticky;
  top: 0;
  background-color: #f5f7fa;
  z-index: 1;
}

.modal-table td[b-lqywjhhnk9] {
  padding: 8px 4px;
  text-align: left;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-table th[b-lqywjhhnk9] {
  background-color: #f5f7fa;
  font-weight: 600;
  padding: 8px 4px;
  border-bottom: 2px solid #ddd;
  white-space: nowrap;
}

.modal-table tr:hover[b-lqywjhhnk9] {
  background-color: #f0f4f8;
}

.modal-table th:nth-child(1)[b-lqywjhhnk9] {
  width: 20%;
} /* 제목 */
.modal-table th:nth-child(2)[b-lqywjhhnk9] {
  width: 15%;
} /* X축 */
.modal-table th:nth-child(3)[b-lqywjhhnk9] {
  width: 10%;
} /* Y축 개수 */
.modal-table th:nth-child(4)[b-lqywjhhnk9] {
  width: 15%;
} /* 생성일 */
.modal-table th:nth-child(5)[b-lqywjhhnk9],
.modal-table th:nth-child(6)[b-lqywjhhnk9],
.modal-table th:nth-child(7)[b-lqywjhhnk9] {
  width: 13.33%;
} /* 작업 버튼들 */

/* 드롭다운 메뉴 스타일 */
.dropdown[b-lqywjhhnk9] {
  position: relative;
  display: inline-block;
}

.dropdown-toggle[b-lqywjhhnk9] {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 4px;
  position: relative;
}

.dropdown-toggle[b-lqywjhhnk9]::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
}

.dropdown-menu[b-lqywjhhnk9] {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 14px;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu.show[b-lqywjhhnk9] {
  display: block;
}

.dropdown-item[b-lqywjhhnk9] {
  display: block;
  width: 100%;
  padding: 8px 16px;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover[b-lqywjhhnk9],
.dropdown-item:focus[b-lqywjhhnk9] {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* 작업 버튼 스타일 */
.btn-action[b-lqywjhhnk9] {
  background-color: #4a5568;
  color: white;
  transition: background-color 0.2s ease;
}

.btn-action:hover[b-lqywjhhnk9] {
  background-color: #2d3748;
}

/* 드롭다운 항목별 색상 */
.btn-apply[b-lqywjhhnk9] {
  color: #3182ce;
}

.btn-edit[b-lqywjhhnk9] {
  color: #718096;
}

.btn-save[b-lqywjhhnk9] {
  color: #38a169;
}

.btn-delete[b-lqywjhhnk9] {
  color: #e53e3e;
}

.btn-secondary[b-lqywjhhnk9] {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover[b-lqywjhhnk9] {
  background-color: #545b62;
}

.btn-danger[b-lqywjhhnk9] {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover[b-lqywjhhnk9] {
  background-color: #c82333;
}

.btn-success[b-lqywjhhnk9] {
  background-color: #28a745;
  color: white;
}

.btn-success:hover[b-lqywjhhnk9] {
  background-color: #218838;
}

.search-input[b-lqywjhhnk9] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
}

.edit-title-input[b-lqywjhhnk9] {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #80bdff;
  border-radius: 4px;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  font-size: 14px;
}

.delete-confirm-dialog[b-lqywjhhnk9] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.delete-confirm-content[b-lqywjhhnk9] {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.delete-confirm-buttons[b-lqywjhhnk9] {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.error-message[b-lqywjhhnk9] {
  width: 100%;
  color: #dc3545;
  font-size: 0.875rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  visibility: hidden;
  margin-top: 1rem;
  justify-content: center;
}

.error-message.show[b-lqywjhhnk9] {
  visibility: visible;
}

.close-button[b-lqywjhhnk9] {
  margin-top: 10px;
}

/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-lqywjhhnk9] {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  text-align: center;
}

.settings-card[b-lqywjhhnk9] {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 버튼 크기 조정 */
.modal-table .btn[b-lqywjhhnk9] {
  padding: 4px 8px;
  font-size: 0.85rem;
  display: inline-block;
  width: 100%;
}
/* /Pages/Components/GraphSetting/SettingButtons.razor.rz.scp.css */
.button-container[b-me150xfsyo] {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.action-button[b-me150xfsyo] {
    min-width: 120px;
}
/* /Pages/Components/GraphSetting/StepSelectionSettings.razor.rz.scp.css */
.step-section[b-wfx8c9v9xh] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-item[b-wfx8c9v9xh] {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    font-size: 16px;
}

    .step-item input[type="checkbox"][b-wfx8c9v9xh] {
        width: 20px;
        height: 20px;
        accent-color: #4299e1;
    }

    .step-item label[b-wfx8c9v9xh] {
        cursor: pointer;
    }
/* _SharedStyles.css - 여러 컴포넌트에서 재사용하는 공통 스타일 */
h3[b-wfx8c9v9xh] {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}

.settings-card[b-wfx8c9v9xh] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.error-message[b-wfx8c9v9xh] {
    width: 100%;
    color: #dc3545;
    font-size: 0.875rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    margin-top: 1rem;
    justify-content: center;
}

    .error-message.show[b-wfx8c9v9xh] {
        visibility: visible;
    }
/* /Pages/Components/GraphView.razor.rz.scp.css */
.graph-container[b-j2j9devlva] {
  width: 100%;
  height: 88%;
}

.graph-title[b-j2j9devlva] {
  width: 100%;
  height: 5%;
  font-size: 15px;
  display: flex;
  align-items: center; /* 수직 정렬 */
  justify-content: center; /* 수평 정렬 */
  text-align: center;
}

.modal-overlay[b-j2j9devlva] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content.large[b-j2j9devlva] {
  width: 700px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-grid-2x2[b-j2j9devlva] {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.modal-cell.axis-list[b-j2j9devlva] {
  border-right: 1px solid #ccc;
  padding-right: 10px;
}

.axis-item[b-j2j9devlva] {
  cursor: pointer;
  padding: 5px 10px;
  margin-bottom: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}

.axis-item:hover[b-j2j9devlva] {
  background: #f0f0f0;
}

.axis-item.selected[b-j2j9devlva] {
  background: #007bff;
  color: white;
}

.modal-cell.axis-settings[b-j2j9devlva] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.axis-input-row[b-j2j9devlva] {
  display: flex;
  align-items: center;
  gap: 10px;
}

.axis-input-row label[b-j2j9devlva] {
  width: 50px;
}

.axis-input-row input[b-j2j9devlva] {
  width: 100px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal-footer[b-j2j9devlva] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
}

.modal-footer.right-align button[b-j2j9devlva] {
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #007bff;
  color: white;
  font-weight: 500;
}

.modal-footer.right-align button:last-child[b-j2j9devlva] {
  background: #6c757d;
}
/* /Pages/Components/Header/Header.razor.rz.scp.css */
/* 기본 라이트 테마 */
:root[b-c6m7pumofn] {
    --background-color: #ffffff;
    --text-color: #1f5494;
    --hover-color: #f5f5f5;
    --border-color: #eee;
    --icon-color: #4a5568;
    --title-color: #1f5494;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --menu-shadow: rgba(0, 0, 0, 0.15);
}

/* 레이아웃 유지, 색상만 변경 */
.header[b-c6m7pumofn] {
    background-color: var(--background-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.header-logo[b-c6m7pumofn] {
    height: 24px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}


.header-title[b-c6m7pumofn] {
    color: var(--title-color);
}

.profile-info[b-c6m7pumofn] {
    color: var(--text-color);
}

.profile-button[b-c6m7pumofn] {
    color: var(--text-color);
    background: transparent;
}

    .profile-button:hover[b-c6m7pumofn] {
        background: var(--hover-color);
    }

.profile-icon[b-c6m7pumofn] {
    color: var(--icon-color);
}

.arrow-icon[b-c6m7pumofn] {
    color: var(--icon-color);
}

.dropdown-menu[b-c6m7pumofn] {
    background: var(--background-color);
    box-shadow: 0 4px 12px var(--menu-shadow);
    z-index: 1200;
}

.menu-item[b-c6m7pumofn] {
    color: var(--text-color);
}

    .menu-item:hover[b-c6m7pumofn] {
        background: var(--hover-color);
    }

    .menu-item i[b-c6m7pumofn] {
        color: var(--icon-color);
    }

    .menu-item.logout[b-c6m7pumofn] {
        color: #ff6b6b;
    }

        .menu-item.logout i[b-c6m7pumofn] {
            color: #ff6b6b;
        }

/* 기존 스타일 유지하면서 색상만 변수로 변경 */
.header[b-c6m7pumofn] {
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    max-height: 64px;
    background-color: var(--background-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.header-title[b-c6m7pumofn] {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--title-color);
}

.profile-info[b-c6m7pumofn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--text-color);
}

.profile-menu[b-c6m7pumofn] {
    position: relative;
}

.profile-button[b-c6m7pumofn] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    color: var(--text-color);
}

    .profile-button:hover[b-c6m7pumofn] {
        background: var(--hover-color);
    }

.profile-icon[b-c6m7pumofn] {
    font-size: 24px;
    color: var(--icon-color);
}

.arrow-icon[b-c6m7pumofn] {
    font-size: 12px;
    color: var(--icon-color);
    transition: transform 0.2s;
}

.profile-menu.active .arrow-icon[b-c6m7pumofn] {
    transform: rotate(180deg);
}

.dropdown-menu[b-c6m7pumofn] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--menu-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
}

    .dropdown-menu.show[b-c6m7pumofn] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.menu-header[b-c6m7pumofn] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name[b-c6m7pumofn] {
    font-weight: 600;
    color: var(--text-color);
}

.user-email[b-c6m7pumofn] {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
}

.menu-divider[b-c6m7pumofn] {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.menu-item[b-c6m7pumofn] {
    width: 100%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .menu-item:hover[b-c6m7pumofn] {
        background: var(--hover-color);
    }

    .menu-item i[b-c6m7pumofn] {
        font-size: 16px;
        color: var(--icon-color);
    }

    .menu-item.logout[b-c6m7pumofn] {
        color: #ff6b6b;
    }

        .menu-item.logout i[b-c6m7pumofn] {
            color: #ff6b6b;
        }

.header-right[b-c6m7pumofn] {
    display: flex;
}

.modal-backdrop[b-c6m7pumofn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4); /* 반투명 어두운 배경 */
    z-index: 1000; /* DxWindow보다 아래, 페이지 내용 위 */
    pointer-events: auto; /* 클릭 막기 */
}
/* /Pages/Components/LeftPanel/LeftPanel.razor.rz.scp.css */
.grid-container[b-436jf84q63] {
    border-radius: 12px;
    height: 100%;
    position: relative;
}

.toolbar-container[b-436jf84q63] {
    padding: 12px 20px;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}

.search-container[b-436jf84q63] {
    flex: 1;
}

[b-436jf84q63] .dxbl-search-box {
    border-radius: 6px;
    border: 1px solid #e0e4e8;
    transition: all 0.2s ease;
}

    [b-436jf84q63] .dxbl-search-box:focus-within {
        border-color: #3d8bfd;
        box-shadow: 0 0 0 3px rgba(61, 139, 253, 0.15);
    }

.cell-placeholder[b-436jf84q63] {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.checkbox-container[b-436jf84q63] {
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid #e0e4e8;
}

[b-436jf84q63] .first-grid-table {
    table-layout: fixed !important;
    width: 100% !important;
}

    [b-436jf84q63] .first-grid-table td {
        max-width: none !important;
        width: auto !important;
    }

.expandable-cell[b-436jf84q63] {
    /*    width: auto;*/
    min-width: 50px;
    max-width: fit-content;
    overflow: hidden;
    white-space: nowrap;
}

    .expandable-cell.expanded[b-436jf84q63] {
        width: auto !important;
        max-width: max-content !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }

.custom-checkbox[b-436jf84q63] {
    margin-left: 16px;
}

.checkbox-text[b-436jf84q63] {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

[b-436jf84q63] .dxbl-grid {
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0e4e8;
    overflow: hidden;
    height: 100%;
}

[b-436jf84q63] .dxbl-grid-header {
    background: #004A76 !important;
    font-weight: 300 !important;
    height: 3rem;
    color: white !important;
    border: 1px solid black;
    text-align: center;
}

[b-436jf84q63] .dxbl-grid-cell {
    padding: 12px 16px;
    background: black !important;
}

.filter-container[b-436jf84q63] {
    border-radius: 4px;
}

.custom-page[b-436jf84q63] {
    height: 5%;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}


.pager-container[b-436jf84q63] {
    height: 100%;
    max-height: 32px;
    align-content: center;
    justify-content: center;
    display: flex;
}

.active-page[b-436jf84q63] {
    background-color: #007bff !important;
    color: white !important;
}

.items-per-page[b-436jf84q63] {
    display: flex;
    align-items: center;
    gap: 8px;
}

[b-436jf84q63] .dxbl-grid {
    height: 88%;
}

[b-436jf84q63] .dxbl-scroll-viewer-content {
    height: 100%;
}

[b-436jf84q63] .dxbl-grid > .dxbl-grid-toolbar-container {
    padding: 0 !important;
}

[b-436jf84q63] dxbl-grid-empty-row {
    height: 0px;
}

.page-button[b-436jf84q63] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-button:hover[b-436jf84q63] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

    .page-button:disabled[b-436jf84q63] {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .page-button.active[b-436jf84q63] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

.sparkline-selector[b-436jf84q63] {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 2rem;
    gap: 0.5rem;
}

.sparkline-label[b-436jf84q63] {
    white-space: nowrap;
}

[b-436jf84q63] dxbl-input-editor {
    margin: 0 2rem !important;
}

[b-436jf84q63] .dxbl-text-edit-input {
    width: 55px;
}

[b-436jf84q63] .dxbl-loading-panel-container.dxbl-loading-panel-shading {
    background-color: rgba(255, 255, 255, 0.5) !important; /* 더 연한 배경 */
}

[b-436jf84q63] .dxbl-loading-panel .dxbl-loading-panel-message {
    color: black;
}

[b-436jf84q63] .dxbl-wait-indicator.dxbl-wait-indicator-pulse {
    fill: black;
}

.highlight-text[b-436jf84q63] {
    background-color: #ffff00; /* 노란색 배경 */
    font-weight: bold;
}

.selected-row[b-436jf84q63] {
    background-color: #e6f2ff !important;
}

div[style*="overflow: auto"][b-436jf84q63] {
    scrollbar-width: thin; /* Firefox 전용 */
    scrollbar-color: #bbb transparent;
}

    /* Chrome, Edge, Safari */
    div[style*="overflow: auto"][b-436jf84q63]::-webkit-scrollbar {
        height: 6px;
    }

    div[style*="overflow: auto"][b-436jf84q63]::-webkit-scrollbar-thumb {
        background-color: #bbb;
        border-radius: 3px;
    }

    div[style*="overflow: auto"][b-436jf84q63]::-webkit-scrollbar-track {
        background: transparent;
    }

    div[style*="overflow: auto"][b-436jf84q63]::-webkit-scrollbar-button {
        display: none;
    }
/* /Pages/Components/LeftPanel/LeftPanel_detailContent.razor.rz.scp.css */

.selected-battery[b-gwo0mkqf86] {
    background-color: #dbeafe; /* 파란색 배경 */
    font-weight: bold;
}


[b-gwo0mkqf86] .dxbl-loading-panel-container.dxbl-loading-panel-shading {
    background-color: rgba(255, 255, 255, 0.5) !important; /* 더 연한 배경 */
}

[b-gwo0mkqf86] .dxbl-loading-panel .dxbl-loading-panel-message {
    color: black;
}

[b-gwo0mkqf86] .dxbl-wait-indicator.dxbl-wait-indicator-pulse {
    fill: black;
}

/* 기존 스타일 유지 */
.selected-battery[b-gwo0mkqf86] {
    background-color: #e0f0ff;
    font-weight: bold;
}
/* /Pages/Components/LeftPanel/SparklineTemplate.razor.rz.scp.css */
.sparkline-template-container[b-pw0j8q9v5p] {
    width: 100%;
    min-width: 100px;
}
/* /Pages/Components/LogComponent/Log.razor.rz.scp.css */


.log-container[b-hkxxn6s934] {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.log-controls[b-hkxxn6s934] {
    margin-top: 15px;
}

    .log-controls input[b-hkxxn6s934] {
        width: 300px;
    }

.log-content[b-hkxxn6s934] {
    background: #f5f5f5;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
    min-height: 0;
}

.log-list[b-hkxxn6s934] {
    min-height: 0;
    max-height: 450px;
    overflow-y: auto;
    background: #f5f5f5;
}

.log-item[b-hkxxn6s934] {
    padding: 5px 10px;
    font-family: monospace;
    display: flex;
    gap: 20px;
    white-space: nowrap;
}

.log-time[b-hkxxn6s934] {
    color: #666;
    min-width: 180px;
}

.log-text[b-hkxxn6s934] {
    color: #333;
}
/* /Pages/Components/Profile/Profile.razor.rz.scp.css */
.container-cl[b-ey3n04naml] {
    width: 100%;
    height: 100%;
}


.container[b-ey3n04naml] {
    width: 100%;
    height: 100%;
}

.profile-card[b-ey3n04naml] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.profile-header[b-ey3n04naml] {
    text-align: center;
    margin-bottom: 2rem;
}

    .profile-header h2[b-ey3n04naml] {
        color: #2d3748;
        margin-bottom: 0.5rem;
    }

    .profile-header p[b-ey3n04naml] {
        color: #718096;
        margin: 0;
    }

.profile-nav[b-ey3n04naml] {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.nav-link[b-ey3n04naml] {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: #718096;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

    .nav-link.active[b-ey3n04naml] {
        color: #4299e1;
    }

        .nav-link.active[b-ey3n04naml]::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #4299e1;
        }

.profile-section[b-ey3n04naml] {
    padding: 1rem 0;
}

.form-group[b-ey3n04naml] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-ey3n04naml] {
        display: block;
        margin-bottom: 0.5rem;
        color: #4a5568;
        font-weight: 500;
    }

.form-control[b-ey3n04naml] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    transition: border-color 0.3s;
    height: 50px;
}

    .form-control:focus[b-ey3n04naml] {
        outline: none;
        border-color: #4299e1 !important;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    }

.error-border[b-ey3n04naml] {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

    /* 포커스되었지만 에러가 있는 경우 에러 스타일 우선 적용 */
    .error-border:focus[b-ey3n04naml] {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    }

.verification-input[b-ey3n04naml] {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.current-value[b-ey3n04naml] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #f7fafc;
    border-radius: 8px;
    height: 50px;
}

.password-rules[b-ey3n04naml] {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.rule[b-ey3n04naml] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

    .rule.valid[b-ey3n04naml] {
        color: #48bb78;
    }

    .rule i[b-ey3n04naml] {
        font-size: 0.875rem;
    }

.profile-actions[b-ey3n04naml] {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

    .profile-actions .btn[b-ey3n04naml] {
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        margin-bottom: 20px;
    }

.btn-primary[b-ey3n04naml] {
    background-color: #4299e1;
    color: white;
    border: none;
}

.btn-primary-cancel[b-ey3n04naml] {
    background-color: white;
    color: black;
    border: 2px solid #e2e8f0;
}

.btn-primary:hover[b-ey3n04naml] {
    background-color: #3182ce;
}

.btn-outline-primary[b-ey3n04naml] {
    background-color: transparent;
    border: 1px solid #4299e1;
    color: #4299e1;
    height: 50px;
    border-radius: 8px !important;
}

    .btn-outline-primary:hover[b-ey3n04naml] {
        background-color: #ebf8ff;
    }

.btn-link[b-ey3n04naml] {
    background: none;
    border: none;
    color: #4299e1;
    padding: 0;
    text-decoration: underline;
}


.button-group[b-ey3n04naml] {
    display: flex;
    gap: 0.5rem;
}

.btn-outline-secondary[b-ey3n04naml] {
    background-color: white;
    color: #718096;
    border: 1px solid #718096;
}

    .btn-outline-secondary:hover[b-ey3n04naml] {
        background-color: #f7fafc;
        color: #4a5568;
    }


.withdrawal-container[b-ey3n04naml] {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
}

.withdrawal-step h2[b-ey3n04naml] {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.warning-message[b-ey3n04naml] {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .warning-message i[b-ey3n04naml] {
        color: #856404;
        font-size: 24px;
    }

    .warning-message p[b-ey3n04naml] {
        align-items: center;
        margin-bottom: 0;
    }

.form-group[b-ey3n04naml] {
    margin-bottom: 20px;
}

    .form-group label[b-ey3n04naml] {
        display: block;
        margin-bottom: 5px;
    }

.confirm-check[b-ey3n04naml] {
    margin: 20px 0;
}

.btn[b-ey3n04naml] {
    padding: 8px 20px;
    font-size: 14px;
}

.container[b-ey3n04naml] {
    width: 100%;
    height: 100%;
}

.input-group .btn[b-ey3n04naml] {
    white-space: nowrap;
}

.btn-cancel[b-ey3n04naml] {
    background-color: transparent;
    border: 1px solid #e2e8f0;
    color: #718096;
    height: 50px;
    border-radius: 8px !important;
}

    .btn-cancel:hover[b-ey3n04naml] {
        background-color: #f7fafc;
    }

.mt-2[b-ey3n04naml] {
    margin-top: 0.5rem;
}

.error-message[b-ey3n04naml] {
    width: 100%;
    color: red;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 20px;
}

.success-message[b-ey3n04naml] {
    width: 100%;
    color: #28a745;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 20px;
}

.hidden[b-ey3n04naml] {
    visibility: hidden;
    margin-top: 0.5rem;
}

.visible[b-ey3n04naml] {
    display: block;
    margin-top: 0.5rem;
}


.input-group[b-ey3n04naml] {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .input-group .form-control[b-ey3n04naml] {
        flex: 1;
    }

.invalid[b-ey3n04naml] {
    color: #dc3545;
    outline: none;
}

.valid[b-ey3n04naml] {
    color: #28a745;
}

.form-control[b-ey3n04naml]::placeholder {
    color: #888;
    opacity: 1;
}

.form-control:focus[b-ey3n04naml]::placeholder {
    color: transparent;
}


.input-with-icon[b-ey3n04naml] {
    position: relative;
    width: 100%;
    flex: 1; /* ✅ 이거 추가 */
}


    .input-with-icon .form-control[b-ey3n04naml] {
        padding-right: 60px; /* 오른쪽 타이머 공간 확보 */
    }

.timer-inside[b-ey3n04naml] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    font-weight: bold;
    font-size: 0.9rem;
    pointer-events: none;
}
/* /Pages/Components/Recipe/Recipe.razor.rz.scp.css */
.recipe-container[b-y6jeid0skr] {
    padding: 24px;
    background-color: #f5f7fa;
}

.info-section[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.grid[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 한 줄에 5개씩 배치 */
    gap: 16px; /* 간격 조정 */
}


.grid-73[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 6.5fr 3.5fr;
    gap: 20px; /* 필요에 따라 조정 */
}

.flex[b-y6jeid0skr] {
    display: flex;
    justify-content: space-between;
}

.info-group[b-y6jeid0skr] {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .info-group > h3[b-y6jeid0skr] {
        font-size: 18px;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .info-group > h3 > i[b-y6jeid0skr] {
            color: #4299e1;
            font-size: 20px;
        }

.info-group-item[b-y6jeid0skr] {
    color: #4a5568;
    margin: 12px 0;
    font-size: 15px;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .info-group-item:hover[b-y6jeid0skr] {
        background: #edf2f7;
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }

.info-label[b-y6jeid0skr] {
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-value[b-y6jeid0skr] {
    font-weight: 600;
    color: #4299e1;
    padding: 4px 12px;
    background: #ebf8ff;
    border-radius: 6px;
    min-width: 80px;
    text-align: right;
}

.detail-section[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

/* 적용 조건 패널 */
.conditions-panel[b-y6jeid0skr] {
    background: #ffffff;
    padding: 28px 28px 0 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden; /* overflow-y: auto 대신 hidden 사용 */
    max-height: 1000px;
}

.table-container[b-y6jeid0skr] {
    max-height: calc(100% - 60px); /* 헤더 높이만큼 뺌 */
    overflow-y: auto;
    margin-top: 16px;
}

    .table-container[b-y6jeid0skr]::-webkit-scrollbar {
        width: 10px;
    }

    /* 스크롤바 트랙(배경) 스타일 */
    .table-container[b-y6jeid0skr]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    /* 스크롤바 핸들(움직이는 부분) 스타일 */
    .table-container[b-y6jeid0skr]::-webkit-scrollbar-thumb {
        background: #cbd5e0;
        border-radius: 4px;
        border: 2px solid transparent;
        background-clip: padding-box;
    }

        /* 스크롤바 호버 시 스타일 */
        .table-container[b-y6jeid0skr]::-webkit-scrollbar-thumb:hover {
            background: #a0aec0;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

.conditions-panel h3[b-y6jeid0skr] {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.conditions-panel .data-grid[b-y6jeid0skr] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    table-layout: fixed; /* 추가: 고정 테이블 레이아웃 사용 */
}

/* No */
.data-grid th:nth-child(1)[b-y6jeid0skr] {
    width: 10%;
}
/* Type */
.data-grid th:nth-child(2)[b-y6jeid0skr] {
    width: 18%;
}
/* 충전전압 */
.data-grid th:nth-child(3)[b-y6jeid0skr] {
    width: 18%;
}
/* 방전전압 */
.data-grid th:nth-child(4)[b-y6jeid0skr] {
    width: 18%;
}
/* 충전전류 */
.data-grid th:nth-child(5)[b-y6jeid0skr] {
    width: 18%;
}
/* 방전전류 */
.data-grid th:nth-child(6)[b-y6jeid0skr] {
    width: 18%;
}



/* 셀 내부 여백 및 텍스트 정렬 */
.data-grid th[b-y6jeid0skr],
.data-grid td[b-y6jeid0skr] {
    padding: 12px 4px;
    text-align: center;
    white-space: nowrap;
}

/* 설정 패널 */
.settings-panel[b-y6jeid0skr] {
    display: grid;
    grid-template-rows: 2.2fr 2fr 1fr; /* 처음 두 개는 2칸, 마지막은 1칸 */
    gap: 16px;
}


.settings-group2[b-y6jeid0skr] {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    max-height: 500px;
    height: auto;
}

    .settings-group2 h3[b-y6jeid0skr] {
        font-size: 16px;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 16px;
    }

/* 공통 테이블 스타일 */
.data-grid[b-y6jeid0skr] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
}

    .data-grid th[b-y6jeid0skr] {
        position: sticky;
        top: 0;
        z-index: 1;
        background-color: #f8fafc;
        color: #2d3748;
        font-weight: 600;
        padding: 14px 4px;
        font-size: 14px;
        text-align: center;
        border-bottom: 2px solid #e2e8f0;
        white-space: nowrap
    }

    .data-grid td[b-y6jeid0skr] {
        padding: 16px 4px;
        border-bottom: 1px solid #edf2f7;
        color: #4a5568;
        font-size: 14px;
        white-space: nowrap
    }

    .data-grid tr:hover[b-y6jeid0skr] {
        background-color: #ebf8ff;
    }

.selected[b-y6jeid0skr] {
    background-color: #ebf8ff;
}

/* 스크롤바 스타일 */
.conditions-panel[b-y6jeid0skr]::-webkit-scrollbar,
.scrollable-grade[b-y6jeid0skr]::-webkit-scrollbar {
    width: 10px;
}

.conditions-panel[b-y6jeid0skr]::-webkit-scrollbar-track,
.scrollable-grade[b-y6jeid0skr]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.conditions-panel[b-y6jeid0skr]::-webkit-scrollbar-thumb,
.scrollable-grade[b-y6jeid0skr]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

    .conditions-panel[b-y6jeid0skr]::-webkit-scrollbar-thumb:hover,
    .scrollable-grade[b-y6jeid0skr]::-webkit-scrollbar-thumb:hover {
        background: #a0aec0;
    }

.recipe-header[b-y6jeid0skr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

input[type="text"][b-y6jeid0skr],
input[type="number"][b-y6jeid0skr],
select[b-y6jeid0skr] {
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    max-width: 200px;
}

.profile-actions[b-y6jeid0skr] {
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.btn[b-y6jeid0skr] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-primary1[b-y6jeid0skr] {
    background-color: #4299e1;
    color: white;
    border: none;
}

.grid-two-columns[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 2~4열 자동 반응형 */
    gap: 16px;
}

.grid-item-group[b-y6jeid0skr] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.end-grid[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.settings-group2 .end-grid[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.settings-group2 .info-block[b-y6jeid0skr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

    .settings-group2 .info-block:hover[b-y6jeid0skr] {
        background: #edf2f7;
    }

.settings-group2 .loop-block[b-y6jeid0skr] {
    margin-top: 20px;
    padding: 16px;
    background: #f0f4f8;
    border-radius: 10px;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.info-block:hover[b-y6jeid0skr] {
    background: #edf2f7;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.loop-block:hover[b-y6jeid0skr] {
    background: #edf2f7;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.end-grid-two-col[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 20px;
}

.info-block.dual-value[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 100px 1fr; /* label + values */
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
}

    .info-block.dual-value .info-label[b-y6jeid0skr] {
        width: 100px;
        font-weight: 500;
        color: #2d3748;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .info-block.dual-value .dual-values[b-y6jeid0skr] {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
    }

        .info-block.dual-value .dual-values .info-value[b-y6jeid0skr] {
            width: 120px;
            min-width: 80px;
            text-align: right;
            background: #ebf8ff;
            border-radius: 6px;
            padding: 4px 12px;
            font-weight: 600;
            color: #4299e1;
        }

.dual-header[b-y6jeid0skr] {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    margin-bottom: 8px;
    padding: 0 12px;
}

.dual-values-header[b-y6jeid0skr] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font: bold;
}

.info-value-header[b-y6jeid0skr] {
    width: 120px;
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    color: #718096;
    background: #edf2f7;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.empty-cell[b-y6jeid0skr] {
    width: 100px;
    height: 1px;
}
/* /Pages/Components/RightBottomPanel/RightBottomPanel.razor.rz.scp.css */
.grid-container[b-3eag1gnhv5] {
    height: 100%;
    width: 100%;
}

[b-3eag1gnhv5] .grid-height {
    height: 100%;
}

[b-3eag1gnhv5] .dxbl-grid {
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e4e8;
    overflow: hidden;
    height: 100%;
}

[b-3eag1gnhv5] .dxbl-grid-header {
    background: #004a76 !important;
    font-weight: 300 !important;
    height: 3rem;
    color: white !important;
    border: 1px solid black;
    text-align: center;
}

[b-3eag1gnhv5] .dxbl-grid-table colgroup col:nth-child(n + 1):nth-child(-n + 7) {
    min-width: 150px !important;
}

[b-3eag1gnhv5] .dxbl-grid-table th,
[b-3eag1gnhv5] .dxbl-grid-table td {
    text-align: center !important;
}

.modal[b-3eag1gnhv5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.modal-content[b-3eag1gnhv5] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

    .modal-content h3[b-3eag1gnhv5] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #1a1a1a;
    }

.filter-options[b-3eag1gnhv5] {
    display: flex;
    gap: 12px;
    margin: 1.5rem 0;
}

    .filter-options select[b-3eag1gnhv5],
    .filter-options input[b-3eag1gnhv5] {
        padding: 0.5rem;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        font-size: 0.875rem;
    }

    .filter-options select[b-3eag1gnhv5] {
        width: 80px;
        background-color: #f8fafc;
    }

    .filter-options input[b-3eag1gnhv5] {
        flex: 1;
    }

        .filter-options select:focus[b-3eag1gnhv5],
        .filter-options input:focus[b-3eag1gnhv5] {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
        }

.modal-footer[b-3eag1gnhv5] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 1.5rem;
}

.oneRow-class[b-3eag1gnhv5] {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.filter-icon[b-3eag1gnhv5] {
    height: 16px; /* 원하는 크기로 조정 */
    width: auto;
    vertical-align: middle;
    color: white;
}

.datetime-filter[b-3eag1gnhv5] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-picker[b-3eag1gnhv5],
.time-picker[b-3eag1gnhv5] {
    width: 140px;
}

[b-3eag1gnhv5] .dxbl-loading-panel-container.dxbl-loading-panel-shading {
    background-color: rgba(0, 0, 0, 0.2) !important; /* 더 연한 배경 */
}

.tab-horizontal-bottom[b-3eag1gnhv5] {
    position: absolute;
    background-color: #f5f6f8;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    z-index: 999;
    display: none; /* 기본은 숨김 */
    cursor: pointer;
}

/* 2. 가로 탭 (오른쪽 하단) */
.tab-horizontal-bottom[b-3eag1gnhv5] {
    bottom: 12px;
    right: calc(50% - 60px); /* 오른쪽 패널의 중앙 위치 (전체의 65%/2) */
    width: 120px;
    height: 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: none;
    white-space: nowrap;
    font-weight: bold;
    text-align: center;
}

/* 데이터 설정이 없을 때 표시되는 메시지 스타일 */
.no-data-config-container[b-3eag1gnhv5] {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e0e4e8;
}

.no-data-config-message[b-3eag1gnhv5] {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 80%;
}

    .no-data-config-message p[b-3eag1gnhv5] {
        margin: 0.5rem 0;
        color: #6c757d;
        font-size: 1rem;
    }

        .no-data-config-message p:first-child[b-3eag1gnhv5] {
            color: #495057;
            font-weight: 500;
            font-size: 1.1rem;
        }

[b-3eag1gnhv5].unique-right-bottom dxbl-grid {
    height: 90% !important;
}

.pagination-controls[b-3eag1gnhv5] {
    height: auto;
    min-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.pager-container[b-3eag1gnhv5] {
    height: 100%;
    max-height: 40px;
    align-content: center;
    justify-content: center;
    display: flex;
    gap: 5px;
}

.page-button[b-3eag1gnhv5] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    min-width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
}

    .page-button:hover[b-3eag1gnhv5] {
        background-color: #fd7e14;
        color: white;
        border-color: #fd7e14;
    }

    .page-button:disabled[b-3eag1gnhv5] {
        cursor: not-allowed;
        opacity: 0.5;
        background-color: #f5f5f5;
    }

    .page-button.active[b-3eag1gnhv5] {
        background-color: #fd7e14;
        color: white;
        border-color: #fd7e14;
    }

.datasheet-page-button[b-3eag1gnhv5] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .datasheet-page-button:hover[b-3eag1gnhv5] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

    .datasheet-page-button:disabled[b-3eag1gnhv5] {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .datasheet-page-button.active[b-3eag1gnhv5] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

.page-size-dropdown[b-3eag1gnhv5] {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
}

    .page-size-dropdown:focus[b-3eag1gnhv5] {
        outline: none;
        border-color: #fd7e14;
        box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.2);
    }
/* /Pages/Components/RightTopPanel/RightTopPanel.razor.rz.scp.css */
.grid-container[b-elnjik7oew] {
    height: 100%;
    width: 100%;
}

[b-elnjik7oew] .grid-height {
    height: 100%;
}

[b-elnjik7oew] .dxbl-grid {
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0e4e8;
    overflow: hidden;
    height: 100%;
}

[b-elnjik7oew] .dxbl-grid-header {
    background: #004A76 !important;
    font-weight: 300 !important;
    height: 3rem;
    color: white !important;
    min-width: 120px !important;
    border: 1px solid black;
    text-align: center;
}

.selected-row[b-elnjik7oew] {
    background-color: #cce5ff !important;
}


[b-elnjik7oew] .dxbl-grid-table th,
[b-elnjik7oew] .dxbl-grid-table td {
    text-align: center !important;
}

.modal[b-elnjik7oew] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.modal-content[b-elnjik7oew] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

    .modal-content h3[b-elnjik7oew] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #1a1a1a;
    }

.filter-options[b-elnjik7oew] {
    display: flex;
    gap: 12px;
    margin: 1.5rem 0;
}

    .filter-options select[b-elnjik7oew],
    .filter-options input[b-elnjik7oew] {
        padding: 0.5rem;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        font-size: 0.875rem;
    }

    .filter-options select[b-elnjik7oew] {
        width: 80px;
        background-color: #f8fafc;
    }

    .filter-options input[b-elnjik7oew] {
        flex: 1;
    }

        .filter-options select:focus[b-elnjik7oew],
        .filter-options input:focus[b-elnjik7oew] {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
        }

.modal-footer[b-elnjik7oew] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 1.5rem;
}

[b-elnjik7oew] .oneRow-class {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.filter-icon[b-elnjik7oew] {
    height: 16px; /* 원하는 크기로 조정 */
    width: auto;
    vertical-align: middle;
    color: white;
}

.datetime-filter[b-elnjik7oew] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-picker[b-elnjik7oew], .time-picker[b-elnjik7oew] {
    width: 140px;
}

.loading-container[b-elnjik7oew] {
    position: absolute; /* 화면 전체 덮기 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* 반투명 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* DxGrid보다 높은 값 */
}

.loading-header[b-elnjik7oew] {
    border: none;
    padding: 8px;
    border-radius: 8px;
}

.loading-panel[b-elnjik7oew] {
    width: 100%;
    height: 100%;
    pointer-events: none; /* 클릭 방지 */
}

[b-elnjik7oew] .dxbl-loading-panel-container.dxbl-loading-panel-shading {
    background-color: rgba(255, 255, 255, 0.5) !important; /* 더 연한 배경 */
}

[b-elnjik7oew] .dxbl-loading-panel .dxbl-loading-panel-message {
    color: black;
}

[b-elnjik7oew] .dxbl-wait-indicator.dxbl-wait-indicator-pulse {
    fill: black;
}

.pagination-controls[b-elnjik7oew] {
    height: auto;
    min-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.pager-container[b-elnjik7oew] {
    height: 100%;
    max-height: 40px;
    align-content: center;
    justify-content: center;
    display: flex;
    gap: 5px;
}

.page-button[b-elnjik7oew] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    min-width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
}

    .page-button:hover[b-elnjik7oew] {
        background-color: #fd7e14;
        color: white;
        border-color: #fd7e14;
    }

    .page-button:disabled[b-elnjik7oew] {
        cursor: not-allowed;
        opacity: 0.5;
        background-color: #f5f5f5;
    }

    .page-button.active[b-elnjik7oew] {
        background-color: #fd7e14;
        color: white;
        border-color: #fd7e14;
    }

.datasheet-page-button[b-elnjik7oew] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .datasheet-page-button:hover[b-elnjik7oew] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

    .datasheet-page-button:disabled[b-elnjik7oew] {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .datasheet-page-button.active[b-elnjik7oew] {
        background-color: #fd7e14;
        color: white;
        border-color: white;
    }

.page-size-dropdown[b-elnjik7oew] {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
}

    .page-size-dropdown:focus[b-elnjik7oew] {
        outline: none;
        border-color: #fd7e14;
        box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.2);
    }

[b-elnjik7oew].unique-right-top dxbl-grid {
    height: 90% !important;
}
/* /Pages/Components/Terms.razor.rz.scp.css */
.terms-container[b-ygjoitf0bt] {
    width: 100%;
    margin-top: 1rem;
}

.checkbox-list[b-ygjoitf0bt] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item[b-ygjoitf0bt] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

    .checkbox-item:hover[b-ygjoitf0bt] {
        background-color: #f8fafc;
    }

    .checkbox-item label[b-ygjoitf0bt] {
        font-size: 0.875rem;
        color: #1f2937;
        cursor: pointer;
    }

.terms-modal-content[b-ygjoitf0bt] {
    height: 100%;
    overflow-y: auto;
    padding: 1rem;
}

.terms-text[b-ygjoitf0bt] {
    white-space: pre-line;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

.profile-actions[b-ygjoitf0bt] {
    padding-top: 1rem;
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn[b-ygjoitf0bt] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-primary1[b-ygjoitf0bt] {
    background-color: #4299e1;
    color: white;
    border: none;
}

.btn-primary-cancel[b-ygjoitf0bt] {
    background-color: white;
    color: black;
    border: 2px solid #e2e8f0;
}

.terms-modal-content[b-ygjoitf0bt] {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.terms-text[b-ygjoitf0bt] {
    white-space: pre-line;
}

.custom-checkbox[b-ygjoitf0bt] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 4px;
    cursor: pointer;
    background-color: white;
}

    .custom-checkbox.checked[b-ygjoitf0bt] {
        background-color: #007bff;
        border-color: #007bff;
    }

    .custom-checkbox i[b-ygjoitf0bt] {
        font-size: 14px;
        color: white;
    }

/* 실제 체크박스 숨기기 */
.hidden-checkbox[b-ygjoitf0bt] {
    display: none;
}
/* /Pages/GraphPage.razor.rz.scp.css */
.top-section[b-eu1a61r2vt],
.left-content[b-eu1a61r2vt],
.right-content[b-eu1a61r2vt],
.bottom-section[b-eu1a61r2vt] {
  height: 100%;
}

.bottom-section[b-eu1a61r2vt] {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.controls-container[b-eu1a61r2vt] {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.control-group[b-eu1a61r2vt] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-width[b-eu1a61r2vt] {
  width: 90px !important;
  height: 30px;
}

.apply-button[b-eu1a61r2vt] {
  height: 30px;
}

[b-eu1a61r2vt] .custom-combobox {
  width: 90px !important;
  height: 30px;
}

[b-eu1a61r2vt] .dx-dropdowneditor-input-wrapper {
  width: 90px !important;
  height: 30px;
}

.position-relative[b-eu1a61r2vt] {
  position: relative;
}

.right-content[b-eu1a61r2vt] {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.settings-toggle-button[b-eu1a61r2vt] {
  top: 10px;
  right: 10px;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.settings-toggle-button:hover[b-eu1a61r2vt] {
  background: #f0f0f0;
}

.settings-toggle-button span[b-eu1a61r2vt] {
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.controls-container[b-eu1a61r2vt] {
  padding: 20px;
}

#graph-container[b-eu1a61r2vt]  .dxbl-splitter {
  height: 100% !important;
}

#graph-container[b-eu1a61r2vt] {
  height: 100%;
}

.drawer-header[b-eu1a61r2vt] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  width: 100%;
  height: 100%;
}

.control-container[b-eu1a61r2vt] {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
  width: 100%;
}

.control-group[b-eu1a61r2vt] {
  display: flex;
  align-items: center;
  gap: 8px;
}

.graph-title-input[b-eu1a61r2vt] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 150px;
}

.graph-type-select[b-eu1a61r2vt],
.update-interval-select[b-eu1a61r2vt] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 100px;
}

.close-button[b-eu1a61r2vt] {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: 15px;
}
/* 북마크 스타일 */
.fixed-bookmark[b-eu1a61r2vt] {
  position: fixed;
  top: 80px;
  left: 10px;
  width: 30px;
  height: 120px; /* 텍스트 길이에 맞게 높이 조정 */
  background-color: #f5f6f8;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-right: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

/* 북마크 텍스트 스타일 */
.bookmark-text[b-eu1a61r2vt] {
  position: absolute;
  transform: rotate(90deg);
  transform-origin: left top;
  white-space: nowrap;
  text-align: center;
  width: 120px; /* 텍스트 길이에 맞게 조정 */
  left: 25px; /* 중앙 정렬을 위해 조정 */
  color: #333333; /* 어두운 회색 텍스트 */
  font-size: 14px;
  font-weight: bold;
}

/* 수평 splitter의 separator (width: 20px) */
[b-eu1a61r2vt]
  .dxbl-splitter-horizontal
  .dxbl-splitter-pane:has(
    .dxbl-splitter-pane-content[data-pane-id="graph-left-pane"]
  )
  ~ .dxbl-splitter-separator {
  width: 20px !important;
}

/* 수직 splitter의 separator (height: 20px) */
[b-eu1a61r2vt]
  .dxbl-splitter-vertical
  .dxbl-splitter-pane:has(
    .dxbl-splitter-pane-content[data-pane-id="graph-main-pane"]
  )
  ~ .dxbl-splitter-separator {
  height: 20px !important;
}

/* 임계값 설정 컨트롤 스타일 */
.threshold-controls[b-eu1a61r2vt] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.threshold-list[b-eu1a61r2vt] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.threshold-item[b-eu1a61r2vt] {
  display: flex;
  align-items: center;
  gap: 8px;
}

.axis-label[b-eu1a61r2vt] {
  font-weight: bold;
  min-width: 30px;
  color: #333;
}

.threshold-input[b-eu1a61r2vt] {
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 80px;
  font-size: 12px;
}

.apply-single-threshold[b-eu1a61r2vt],
.apply-all-threshold[b-eu1a61r2vt] {
  padding: 4px 8px;
  border: 1px solid #007bff;
  background-color: #007bff;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
  transition: background-color 0.2s;
}

.apply-single-threshold:hover[b-eu1a61r2vt],
.apply-all-threshold:hover[b-eu1a61r2vt] {
  background-color: #0056b3;
}

.apply-all-threshold[b-eu1a61r2vt] {
  align-self: flex-start;
  margin-top: 5px;
}
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-c9qlzo8r35] {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* 배경색 흰색으로 변경 */
}

.login-box[b-c9qlzo8r35] {
  padding: 0; /* 패딩 제거 */
  background: white;
  box-shadow: none; /* 그림자 제거 */
  border-radius: 0; /* 테두리 둥글기 제거 */
  width: 80%;
}

.login-header[b-c9qlzo8r35] {
  margin-bottom: 2rem; /* 여백 조정 */
  text-align: center; /* 가운데 정렬 */
  width: 100%;
}

.login-header .header-content[b-c9qlzo8r35] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.login-header h1[b-c9qlzo8r35] {
  margin: 0;
  font-size: 1.8rem; /* 폰트 크기 조정 */
  font-style: italic;
  color: #2e5595;
}

.login-header h1[b-c9qlzo8r35]:before {
  display: none; /* 아이콘 제거 */
}

.login-content[b-c9qlzo8r35] {
  width: 305px;
  margin: 0 auto;
}

.form-group[b-c9qlzo8r35] {
  display: block; /* flex 제거 */
  margin-bottom: 0.5rem;
}

.form-group label[b-c9qlzo8r35] {
  display: block;
  margin-right: 0;
  text-align: left;
  margin-bottom: 0.5rem;
}

.dashboard-icon[b-c9qlzo8r35] {
  height: 60px; /* 원하는 크기로 조정 */
  width: auto;
  vertical-align: middle;
}

.form-inputs[b-c9qlzo8r35] {
  margin-bottom: 1rem;
}

.input-group-custom[b-c9qlzo8r35] {
  display: block;
  position: relative;
}

.btn-login[b-c9qlzo8r35] {
  width: 305px;
  height: 60px;
  margin-top: 1rem;
  background: #4285f4;
  border-radius: 4px;
  font-size: 16px;
}

.helper-links[b-c9qlzo8r35] {
  margin-top: 1rem; /* 에러 메시지와의 간격 */
}

.find-accounts[b-c9qlzo8r35] {
  margin-left: 0; /* 마진 제거 */
  padding-right: 0;
  text-align: center;
  white-space: nowrap;
}

.find-accounts button[b-c9qlzo8r35],
a[b-c9qlzo8r35] {
  background: none;
  border: none;
  color: #666;
  text-decoration: underline;
  padding: 15px;
  font-size: 1rem;
  cursor: pointer;
}

.error-message[b-c9qlzo8r35] {
  width: 100%;
  color: #dc3545;
  font-size: 0.875rem;
  height: 1.5rem; /* 고정 높이 설정 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  visibility: hidden; /* 기본적으로 안 보이게 */
  margin-top: 1rem;
}

/* 에러 메시지가 있을 경우 */
.error-message.show[b-c9qlzo8r35] {
  visibility: visible;
}

.success-message[b-c9qlzo8r35] {
  width: 100%;
  color: #28a745;
  font-size: 0.875rem;
  height: 1.5rem; /* 고정 높이 설정 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  visibility: hidden; /* 기본적으로 안 보이게 */
  margin-top: 1rem;
}

.success-message.show[b-c9qlzo8r35] {
  visibility: visible;
}

.modal-backdrop[b-c9qlzo8r35] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1000;
}
/* /Pages/MainPages.razor.rz.scp.css */
.main-container[b-smsgrzxx0u] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.layout[b-smsgrzxx0u] {
    height: 100%;
    width: 100%;
}

[b-smsgrzxx0u] .dxbl-splitter > .dxbl-splitter-pane > .dxbl-splitter-pane-content {
    height: 100%;
    width: 100%;
    padding: 0 !important; /* padding 제거를 위해 !important 사용 */
}

[b-smsgrzxx0u] .dxbl-splitter > .dxbl-splitter-separator > .dxbl-splitter-button > .dxbl-image {
    display: block;
    margin: 0;
    height: 30px;
    width: 30px;
}

[b-smsgrzxx0u] .dxbl-splitter {
    height: calc(100vh - 64px) !important;
}

.custom-drawer[b-smsgrzxx0u] {
    position: fixed;
    top: 64px;
    right: 15%;
    height: 100%;
    z-index: 1000; /* DxSplitter 위에 표시되도록 z-index 설정 */
}

.drawer-header[b-smsgrzxx0u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.close-button[b-smsgrzxx0u] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.settings-toggle-button[b-smsgrzxx0u] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 수직 구분자 (width: 20px) */
[b-smsgrzxx0u] .dxbl-splitter-pane:has(.dxbl-splitter-pane-content[data-pane-id="main-left-pane"]) ~ .dxbl-splitter-separator {
    width: 20px !important;
}

/* 수평 구분자 (height: 20px) */
[b-smsgrzxx0u] .dxbl-splitter-pane:has(.dxbl-splitter-pane-content[data-pane-id="main-top-pane"]) ~ .dxbl-splitter-separator {
    height: 20px !important;
}

/* 기존 스타일 유지 */
[b-smsgrzxx0u] .dxbl-splitter-separator {
    background-color: #f0f0f0;
    position: relative;
}

    /* 구분자 호버 효과 */
    [b-smsgrzxx0u] .dxbl-splitter-separator:hover {
        background-color: #e0e0e0;
    }

/* 공통 탭 스타일 */
.tab-vertical[b-smsgrzxx0u], .tab-horizontal-top[b-smsgrzxx0u], .tab-horizontal-bottom[b-smsgrzxx0u], .tab-horizontal-bottom2[b-smsgrzxx0u], .tab-vertical-right[b-smsgrzxx0u] {
    position: absolute;
    background-color: #f5f6f8;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

/* 1. 세로 탭 (왼쪽 상단) */
.tab-vertical[b-smsgrzxx0u] {
    top: 70px;
    left: 21px;
    width: 40px;
    height: 120px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: none;
    font-weight: bold;
}

/* 2. 가로 탭 (오른쪽 하단) */
.tab-horizontal-bottom[b-smsgrzxx0u] {
    bottom: 20px;
    right: 10px;
    width: 120px;
    height: 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: none;
    white-space: nowrap;
    font-weight: bold;
    text-align: center;
}

.tab-horizontal-bottom2[b-smsgrzxx0u] {
    bottom: 20px;
    right: 30px;
    width: 120px;
    height: 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: none;
    white-space: nowrap;
    font-weight: bold;
}

.tab-horizontal-top[b-smsgrzxx0u] {
    top: 84px;
    right: 10px;
    width: 120px;
    height: 36px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    white-space: nowrap;
    border-top: none;
    font-weight: bold;
}

.tab-vertical-right[b-smsgrzxx0u] {
    top: 74px;
    right: 20px;
    width: 40px;
    height: 120px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-right: none;
    font-weight: bold;
}

/* 호버 효과 */
[b-smsgrzxx0u] .dxbl-splitter-separator:hover + .tab-vertical,
[b-smsgrzxx0u] .dxbl-splitter-separator:hover + .tab-horizontal-top,
[b-smsgrzxx0u] .dxbl-splitter-separator:hover + .tab-horizontal-bottom,
[b-smsgrzxx0u] .dxbl-splitter-separator:hover + .tab-horizontal-bottom2,
[b-smsgrzxx0u] .dxbl-splitter-separator:hover + .tab-vertical-right {
    opacity: 1;
}

/* 북마크 호버 효과 */
.tab-vertical:hover[b-smsgrzxx0u],
.tab-horizontal-top:hover[b-smsgrzxx0u],
.tab-horizontal-bottom:hover[b-smsgrzxx0u],
.tab-horizontal-bottom2:hover[b-smsgrzxx0u],
.tab-vertical-right:hover[b-smsgrzxx0u] {
    background-color: #e8e9eb;
}
/* /Pages/Register.razor.rz.scp.css */
.register-container[b-sc74shirmk] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.register-box[b-sc74shirmk] {
    width: 100%;
    max-width: 600px;
}

.register-header[b-sc74shirmk] {
    padding: 1rem;
    border-bottom: 1px solid #000;
}

    .register-header h2[b-sc74shirmk] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: bold;
        display: flex;
        align-items: center;
    }

.notice[b-sc74shirmk] {
    color: darkred;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.form-group[b-sc74shirmk] {
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--background-color);
}

    .form-group .input-section[b-sc74shirmk] { /* 각 입력 영역을 감싸는 새로운 클래스 */
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin-bottom: 1rem; /* 섹션 사이 간격 */
        align-items: center;
    }

.input-section:last-child[b-sc74shirmk] {
    margin-bottom: 0; /* 마지막 섹션은 마진 제거 */
}

.form-group .input-section label[b-sc74shirmk] {
    width: 150px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-group .input-section .call-section[b-sc74shirmk] {
    width: 100px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-control[b-sc74shirmk] {
    width: 100%;
    height: 38px;
    font-size: 12px !important;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 4px;
}

    .form-control:focus[b-sc74shirmk] {
        border-color: #004A76;
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 74, 118, 0.2);
    }


.input-with-button[b-sc74shirmk] {
    position: relative;
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

    /* 타이머 우측 배치 여백 확보 */
    .input-with-button.input-with-timer .form-control[b-sc74shirmk] {
        padding-right: 70px; /* 타이머 들어갈 공간 */
        flex: 1;
        font-size: 12px;
    }

/* 타이머 위치 조정 */
.timer-inline-inside[b-sc74shirmk] {
    position: absolute;
    right: 110px; /* 버튼 기준 왼쪽으로 */
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}



.text-small[b-sc74shirmk] {
    font-size: 12px;
}

.phone-input-group[b-sc74shirmk] {
    flex: 1.2;
    display: flex;
    gap: 0.5rem;
    margin-left: 50px;
}

.carrier-select[b-sc74shirmk] {
    width: 120px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 0.5rem;
}

.success-message[b-sc74shirmk] {
    color: #28a745;
    font-size: 0.875rem;
    display: flex;
    margin-left: 150px;
    align-items: center;
    gap: 0.5rem;
    min-height: 24px;
    margin-bottom: 1rem;
}

.error-message[b-sc74shirmk] {
    margin-left: 150px;
    color: #dc3545;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 24px;
    margin-bottom: 1rem;
}

.password-input[b-sc74shirmk] {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
}

    .password-input i[b-sc74shirmk] {
        position: absolute;
        right: 1rem;
    }

.password-requirements[b-sc74shirmk] {
    display: block;
    width: 100%;
    margin-left: 133px;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.875rem;
}



    .password-requirements div[b-sc74shirmk] {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .password-requirements .valid[b-sc74shirmk] {
        color: #28a745;
    }

    .password-requirements .invalid[b-sc74shirmk] {
        color: #dc3545;
        outline: none;
    }

.verification-timer-inline[b-sc74shirmk] {
    padding: 0 8px;
    font-size: 0.9rem;
    color: #555;
    align-self: center;
    display: flex;
    align-items: center;
}

.terms-section[b-sc74shirmk] {
    margin: 2rem 0;
    border-radius: 4px;
    width: 100%;
}

.terms-title[b-sc74shirmk] {
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
}

.terms-content[b-sc74shirmk] {
    padding: 1rem;
    min-height: 100px;
    border-bottom: 1px solid #ccc;
}

.terms-agree[b-sc74shirmk] {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-group[b-sc74shirmk] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.btn-back[b-sc74shirmk] {
    width: 120px;
    height: 38px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

    .btn-back:hover[b-sc74shirmk] {
        background: #f8f9fa;
    }

.btn-submit[b-sc74shirmk] {
    width: 120px;
    height: 38px;
    background: #004A76;
    color: #fff;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

    .btn-submit:hover[b-sc74shirmk] {
        background: #003857;
    }

    .btn-submit:disabled[b-sc74shirmk] {
        background: #6c757d;
        cursor: not-allowed;
    }

.text-success[b-sc74shirmk] {
    color: #28a745;
}

.text-danger[b-sc74shirmk] {
    color: #dc3545;
}

.form-control:disabled[b-sc74shirmk] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.fas[b-sc74shirmk] {
    margin-right: 0.5rem;
}

.verification-code-section[b-sc74shirmk] {
    margin-top: 0.5rem;
    width: 100%;
    margin-left: 180px;
}

.btn-primary[b-sc74shirmk] {
    min-width: 97px;
}

.profile-actions[b-sc74shirmk] {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.btn[b-sc74shirmk] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-primary1[b-sc74shirmk] {
    background-color: #4299e1;
    color: white;
    border: none;
}

.btn-primary-cancel[b-sc74shirmk] {
    background-color: white;
    color: black;
    border: 2px solid #e2e8f0;
}

.btn-primary:hover[b-sc74shirmk] {
    background-color: #3182ce;
}

.btn-outline-primary[b-sc74shirmk] {
    background-color: white;
    color: #4299e1;
    border: 1px solid #4299e1;
}

    .btn-outline-primary:hover[b-sc74shirmk] {
        background-color: #ebf8ff;
    }

.hidden[b-sc74shirmk] {
    visibility: hidden;
}



.visible[b-sc74shirmk] {
    display: block;
}

.nomb[b-sc74shirmk] {
    margin-bottom: 0 !important;
}


.verification-timer[b-sc74shirmk] {
    align-content: center;
}
/* /Pages/SearchAccountInfo.razor.rz.scp.css */
.login-container[b-gltfbou0fo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.tab-buttons[b-gltfbou0fo] {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.tab-button[b-gltfbou0fo] {
    padding: 1rem;
    font-size: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    color: #666;
    width: 100%;
}

    .tab-button.active[b-gltfbou0fo] {
        color: #1a56db;
        /*        text-decoration: underline;*/
        text-underline-offset: 8px;
        text-decoration-thickness: 2px;
        border: 3px solid #1a56db;
    }

.tab-container[b-gltfbou0fo] {
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    align-items: center;
    align-content: center;
    justify-content: space-around;
}

.login-box[b-gltfbou0fo] {
    width: 100%;
    max-width: 600px;
    height: 250px;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.form-content[b-gltfbou0fo] {
    padding: 1rem 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.5rem;
    height: 100%;
}

.form-group[b-gltfbou0fo] {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.form2[b-gltfbou0fo] {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between
}

.form3[b-gltfbou0fo] {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}

h6[b-gltfbou0fo] {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 15px;
    font: bold;
}

.form3 label[b-gltfbou0fo] {
    display: block;
    width: 100px;
    margin-right: 20px;
}

.form3 input[b-gltfbou0fo] {
    width: 400px;
}

.form3 .next-btn[b-gltfbou0fo] {
    width: 200px;
    margin-left: 10px;
}

.form-group label[b-gltfbou0fo] {
    min-width: 80px;
    text-align: right;
    padding-top: 0.5rem;
    margin-right: 1rem;
}

.form-group:first-child input[b-gltfbou0fo] {
    width: 250px;
}

.form-group select[b-gltfbou0fo] {
    width: 74px;
}

.phone-group[b-gltfbou0fo] {
    width: 250px;
}

    .phone-group input[b-gltfbou0fo] {
        width: 250px;
    }

.verify-group[b-gltfbou0fo] {
    width: 250px;
    display: flex;
}

    .verify-group input[b-gltfbou0fo] {
        width: 154px;
    }

.verification-message[b-gltfbou0fo] {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

    .verification-message span[b-gltfbou0fo] {
        margin-left: 10px;
    }


.text-danger[b-gltfbou0fo] {
    height: 1.5rem; /* 고정 높이 설정 */
    color: #dc3545;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    visibility: hidden; /* 기본적으로 숨김 */
}

    /* 에러 메시지가 있을 경우 */
    .text-danger.show[b-gltfbou0fo] {
        visibility: visible;
    }

input[b-gltfbou0fo], select[b-gltfbou0fo] {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}

.btn-verify[b-gltfbou0fo] {
    min-width: 80px;
    padding: 0.5rem 1rem;
    background: #004A76;
    color: white;
    border: none;
    cursor: pointer;
    margin-left: 16px;
    display: block;
}

.btn-verify-send[b-gltfbou0fo] {
    min-width: 100px;
    background: #004A76;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-left: 16px;
    white-space: nowrap;
}

.btn-verify:hover[b-gltfbou0fo] {
    background: #003857;
}

.modal[b-gltfbou0fo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 반투명 배경 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* 모달 컨텐츠 */
.modal-content[b-gltfbou0fo] {
    background: white;
    padding: 2rem;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    align-items: center;
}

/* 모달 메시지 */
.modal-message[b-gltfbou0fo] {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* 모달 닫기 버튼 */
.modal-close[b-gltfbou0fo] {
    background: #004A76;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

    .modal-close:hover[b-gltfbou0fo] {
        background: #003857;
    }

.btn-primary[b-gltfbou0fo] {
    width: 120px;
}


.next-btn[b-gltfbou0fo] {
    width: 100%;
}

.profile-actions[b-gltfbou0fo] {
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.btn[b-gltfbou0fo] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-primary1[b-gltfbou0fo] {
    background-color: #4299e1;
    color: white;
    border: none;
}

/* 비활성화된 버튼 스타일 */
.btn-primary.disabled[b-gltfbou0fo],
.btn-primary[disabled][b-gltfbou0fo],
.next-btn.disabled[b-gltfbou0fo] {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-verify-send-block[b-gltfbou0fo] {
    width: 75%;
    height: 120px;
    font-size: 25px;
}
    /* 인증완료 버튼 스타일 */
    .btn-verify-send-block:disabled[b-gltfbou0fo] {
        background-color: #cccccc;
        color: #666666;
        cursor: not-allowed;
    }

    /* 인증완료 성공 상태 */
    .btn-verify-send-block.success:disabled[b-gltfbou0fo] {
        background-color: #28a745;
        color: white;
    }

    /* 처리 중 상태 */
    .btn-verify-send-block.processing:disabled[b-gltfbou0fo] {
        background-color: #cccccc;
        color: #666666;
    }
