/* ページタイトルスタイル */
.page-title {
    border-left: 4px solid #2563eb;
    padding-left: 0.75rem;
    margin-bottom: 1.5rem;
}

/* セクションヘッダー */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0.5rem 0;
    z-index: 20;
    border-bottom: 2px solid #e5e7eb;
}

.section-header h2 {
    margin: 0;
}

.section-file-path {
    font-size: 0.875rem;
    color: #6b7280;
    font-family: monospace;
    background-color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* テーブルコンテナ */
.table-container {
    width: 100%;
    margin: 1rem 0;
}

/* テーブル共通スタイル */
table.data-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    margin: 0;
}

/* テーブルヘッダー（1行目）のスタイル */
table.data-table thead tr {
    background-color: #3b82f6;
    color: #ffffff;
}

table.data-table thead th {
    padding: 0.5rem 0.25rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid #2563eb;
    background-color: #3b82f6;
    position: sticky;
    top: 3.5rem;
    z-index: 10;
    box-shadow: 0 2px 0 0 #3b82f6;
}

/* テーブルボディのスタイル */
table.data-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

table.data-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

table.data-table tbody td {
    padding: 0.25rem;
    border: 1px solid #e5e7eb;
}

table.data-table tbody tr:hover {
    background-color: #eff6ff;
}

/* エラーメッセージ */
.error-message {
    padding: 1rem;
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
    margin: 1rem 0;
}

/* パンくずリスト */
.breadcrumb {
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
}

.breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

