/* 1pdf閲覧のタブ表示*/
.tab-buttons {
            display: flex;
            margin-bottom: 20px;
            overflow-x: auto;
            white-space: nowrap;
        }
        .tab-button {
            flex-shrink: 0;
            padding: 10px 15px;
            margin-right: 5px;
            border: 1px solid #ccc;
            background-color: #f0f0f0;
            cursor: pointer;
            font-weight: bold;
            border-radius: 5px 5px 0 0;
            transition: background-color 0.2s, color 0.2s;
        }
        .tab-button.active {
            background-color: #0056b3;
            color: white;
            border-color: #0056b3;
            border-bottom: none;
        }
        .tab-content {
            border: 1px solid #0056b3;
            border-top: none;
            padding: 20px;
            background-color: #fff;
        }
        .office-list-item {
            list-style-type: none;
            margin-bottom: 8px;
        }
        .file-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .file-info {
            flex-grow: 1;
            margin-right: 15px;
        }

/* ========================================= */
/* 1. 基本レイアウトと共通スタイル (base.htmlから移動) */
/* ========================================= */
body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    color: #333;
    /* ⭐ 固定フッターの高さ（110px+余白）分のパディングをボディの最下部に追加 */
    padding-bottom: 160px; 
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* コンテンツのラッパー */
.container { 
    max-width: 100%; 
    margin: 5px auto; 
    padding: 0 15px; /* モバイルでも左右に適切な余白を確保 */
}
.heading { 
    max-width: 100%; 
    margin: 0; 
    padding: 0 15px; /* モバイルでも左右に適切な余白を確保 */
}
/* ヘッダー（メニュー） */
header { 
    background-color: #ddd; 
    color: black; /* メニューの背景色と文字色を調整 */
    padding: 15px 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

nav a { 
    color: #333;
    margin-left: 15px; 
    text-decoration: none; 
    font-weight: bold;
}

/* フッター（固定） */
footer { 
    background-color: #ffffff; 
    text-align: left; 
    padding: 5px; 
    border-top: 1px solid #ccc; 
    position: fixed; 
    bottom: 0; 
    width: 100%;
    height: 110px; /* フッターの固定高さ */
    box-sizing: border-box; /* paddingを含めて高さを計算 */
}

.footer-logo {
    height: 100px;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    width: auto;
}


/* ========================================= */
/* 2. ログイン画面のスタイル (login.html) */
/* ========================================= */
.login-form {
    max-width: 400px; /* ログインフォーム自体に最大幅を設定 */
    margin: 30px auto; /* 画面中央に配置 */
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* エラー/メッセージ表示 */
.message-error {
    color: red;
    padding: 10px 0;
    text-align: center;
}
.message-general {
    color: black;
    padding: 10px 0;
    text-align: center;
}

/* フォームリストの初期スタイルをリセット */
.login-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 各リストアイテム（行）の下にスペースを追加 */
.login-form ul li {
    margin-bottom: 15px;
}

/* 入力欄とボタンの共通スタイル（モバイルフレンドリー） */
.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[name="username"],
.login-form button[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 48px; /* タップしやすい最低高さを確保 */
}

/* ログインボタンのスタイル */
.login-form button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    font-weight: bold;
}

.login-form button[type="submit"]:hover {
    background-color: #0056b3;
}

/* 注意書きのスタイル */
.note {
    font-size: 0.85em;
    color: #666;
    padding: 10px 0;
    text-align: center;
}

/* ========================================= */
/* 3. ファイルリスト画面のスタイル (file_list.html) */
/* ========================================= */

/* リストの基本リセット (共通ulを上書き) */
ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

/* 各リストアイテムのコンテナ */
.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 縦方向の中央揃えに微修正 */
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* ファイル名と日付をまとめる縦並びコンテナ */
.file-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    margin-right: 15px; /* ボタンとの間にスペース */
}

/* ファイル名のリンクスタイル */
.filename-link a {
    font-weight: bold;
    font-size: 1.1em;
    display: block; /* リンク全体をブロック化してタップエリアを拡大 */
    padding: 5px 0;
}

/* 最終更新日のスタイル */
.modified-date {
    font-size: 0.85em;
    color: #777;
    margin-top: 3px;
    padding-bottom: 5px;
}

/* 削除フォームとボタン */
.delete-form {
    flex-shrink: 0;
}
.edit-btn {

    padding: 8px 12px;
    font-size: 0.9em;
    background-color: #ddd;
    color: black;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: pointer;
    min-width: 80px; 
    min-height: 44px; /* タップしやすい高さを確保 */
    margin:2px;
}
.delete-btn {

    padding: 8px 12px;
    font-size: 0.9em;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 80px; 
    min-height: 44px; /* タップしやすい高さを確保 */
    margin:2px;
}

.delete-btn:hover {
    background-color: #c82333;
}

/* モバイル向け（より小さな画面）での調整 */
@media (max-width: 600px) {
    /* ファイルリストのボタンサイズを調整 */
    .delete-btn {
        padding: 6px 8px;
        min-height: 40px;
        font-size: 0.8em;
    }
}

/* ========================================= */
/* 4. ダッシュボード画面のスタイル (dashboard.html) */
/* ========================================= */

.dashboard-user-info {
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.dashboard-section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.warning-note {
    color: #cc0000;
    font-weight: bold;
    background-color: #ffeaea;
    padding: 10px;
    border-radius: 4px;
}

.dashboard-primary-btn {
    /* width: 100%; は維持 */
    box-sizing: border-box;
    padding: 15px 10px; 
    font-size: 1.1em;
    border-radius: 5px;
    min-height: 48px;
    font-weight: bold;
    cursor: pointer;
    
    background-color: #007bff; 
    color: white;
    border: none;
    /* ❗ 以下の2行を追加または確認 ❗ */
    display: block; /* 常にブロック要素として振る舞うことを保証 */
    margin-bottom: 5px !important; /* 他の要素との意図しないマージンを防ぐ */
}

.dashboard-primary-btn:hover {
    background-color: #0056b3; 
}

.card-body .form-control {
    padding: 15px 10px;
    font-size: 1.1em;
    min-height: 48px;
    border-radius: 5px;
    border-bottom: 1px dotted #eee;
}

/* メニューリストのスタイル */
.form-label {
 display: block;

}
.clean-list {
    list-style: none;
    padding: 0;
}
.clean-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #eee;
}

/* フォームとボタンの共通スタイル */
.upload-form, .user-add-form {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-top: 15px;
}

/* ファイルアップロードの入力欄とボタンを縦に並べる（モバイル優先） */
.upload-form .file-input, 
.upload-form .upload-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 10px;
    min-height: 44px; /* タップエリア確保 */
    font-size: 1em;
}

.upload-form .upload-btn {
    background-color: #28a745;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.file-note {
    font-size: 0.85em;
    color: #777;
    margin-top: 5px;
}

/* ユーザー追加フォームの入力グループ */
.form-group-inline {
    display: flex;
    flex-wrap: wrap; /* モバイルで折り返しを許可 */
    gap: 10px; /* 要素間の隙間 */
    margin-bottom: 10px;
}

.user-add-form .form-input {
    flex-grow: 1; /* スペースを均等に占める */
    min-width: 120px; /* 最小幅 */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    min-height: 44px;
}

.role-select-group {
    align-items: center; /* ロールとボタンを中央揃え */
}

.role-label {
    font-weight: bold;
    flex-shrink: 0; /* 縮まない */
}

.form-select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 44px;
    flex-grow: 1;
    min-width: 100px;
}

.add-user-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    min-height: 44px;
    font-weight: bold;
    flex-shrink: 0;
}

/* テーブルスタイル (モバイル対応) */
.table-responsive {
    overflow-x: auto; /* テーブルが画面幅を超える場合、横スクロールを許可 */
    margin-top: 15px;
}

.data-table {
    border-collapse: collapse;
    background-color: #fff;
}

.data-table th, .data-table td {
    border: 1px solid #ddd;
    padding: 2px;
    text-align: center;
    white-space: nowrap;  /*セル内のテキストの折り返しを禁止し、横スクロールを促す */
}

.data-table th {
    background-color: #f8f8f8;
    font-weight: bold;
}

/* 削除ボタン（テキストリンク風） */
.delete-text-btn {
    color: #dc3545;
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px;
    font-size: 1em;
    min-height: 44px; /* タップエリア確保 */
    display: inline-block;
}

.current-user-tag {
    font-size: 0.9em;
    color: #6c757d;
}

/* アクションリンク */
.action-link {
    margin: 15px 0;
}
.action-link a {
    font-size: 1.1em;
    padding: 5px 0;
    display: inline-block;
}

/* スマホでの入力グループの調整 */
@media (max-width: 500px) {
    .form-group-inline {
        flex-direction: column; /* 狭い画面では縦並びにする */
    }
    .user-add-form .form-input,
    .role-select-group {
        width: 100%;
    }
    .add-user-btn {
        width: 100%;
        margin-left: 0 !important;
    }
    .role-select-group {
        display: block; /* ロール選択は縦に並べる */
    }
    .role-label {
        display: block;
        margin-bottom: 5px;
    }
}
/* ========================================= */
/* 5. パスワード変更画面のスタイル */
/* ========================================= */

.password-change-container {
    max-width: 450px; /* フォームの最大幅を少し広めに設定 */
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* フォームの共通スタイル */
.standard-form {
    padding: 15px 0;
}

/* 入力フィールドの共通スタイル */
.standard-form .form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    margin-bottom: 15px; /* 行間を広げる */
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 48px; /* モバイルでのタップエリアを確保 */
}

/* ボタンの共通スタイル */
.primary-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    min-height: 48px;
    margin-top: 5px;
}
.primary-btn:hover {
    background-color: #0056b3;
}

/* メッセージのスタイル */
.message-error {
    color: #dc3545;
    font-weight: bold;
    padding: 10px 0;
}

.message-success {
    color: #28a745;
    font-weight: bold;
    padding: 10px 0;
}