/* ベーススタイル */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f9;
    color: #333;
}

h1, h2 {
    margin-bottom: 10px;
}

.app-container {
    max-width: 100%;
    margin: 0 auto;
}

/* --- パレットエリアのスタイル --- */
#palette-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    height: 400px; /* 固定高さ */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000; /* 最前面 */
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid #ccc;
    overflow: hidden;
}

#palette-area h2 {
    margin: 0;
    padding: 10px;
    background-color: #37474f;
    color: #fff;
    font-size: 16px;
    text-align: center;
    cursor: move; /* 移動可能カーソル */
    user-select: none; /* 文字選択防止 */
}

.palette-container {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column; /* 縦並び */
    gap: 8px;
}

/* パレット内の各授業行 */
.palette-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-bottom: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
}

/* パレット内の情報テキスト */
.palette-info {
    flex: 1;
    font-size: 12px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.count-badge {
    font-weight: bold;
    color: #1976d2;
}
.count-badge.warning {
    color: #e64a19; /* 配置数が足りない場合など */
}
.count-badge.ok {
    color: #388e3c; /* 完了 */
}

/* --- 授業カードのスタイル --- */
.lesson-card {
    width: 80px;
    height: 60px;
    /* 背景色はJSまたは個別指定で上書きされます */
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 4px;
    
    /* 余白を極力減らして文字スペースを確保 */
    padding: 2px;
    
    /* 初期フォントサイズ（大きめに設定し、JSで縮小させます） */
    font-size: 16px; 
    line-height: 1.1; /* 行間を詰める */
    
    cursor: grab;
    
    /* Flexboxで内容を中央寄せ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.1s, box-shadow 0.1s;
    
    /* はみ出し対策 */
    overflow: hidden;
    word-break: break-all; /* 長い単語も折り返す */
}

.lesson-card:active {
    cursor: grabbing;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.lesson-card.fixed {
    background-color: #ffebee;
    border-color: #ef9a9a;
    cursor: not-allowed; /* 固定授業は動かせない場合のカーソル */
}
/* --- Phase 5: ロック機能用スタイル --- */
/* ★追加: 同日重複警告スタイル */
.lesson-card.duplicate-warning {
    /* border幅を変えるとフォントサイズ計算に影響するため、色のみ変更してbox-shadowで強調する */
    border-color: #ff9800 !important;
    /* 内側に実線の影を追加して擬似的に枠を太く見せ、外側には発光する影をつける */
    box-shadow: inset 0 0 0 1px #ff9800, 0 0 8px rgba(255, 152, 0, 0.8) !important;
    
    position: relative;
    z-index: 10; /* 他のカードより前面へ */
}

/* 重複時のビックリマークアイコン */
.lesson-card.duplicate-warning::after {
    content: "!";
    position: absolute;
    top: -8px;
    right: -8px; /* ロックアイコンと被らないよう位置調整 */
    background: #ff9800;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.lesson-card.locked {
    border: 2px solid #e53935; /* 赤い枠線 */
    background-color: #ffebee !important; /* 背景色を強制変更 */
    cursor: not-allowed; /* 禁止カーソル */
    position: relative;
}

/* 鍵アイコンの疑似要素 */
.lesson-card.locked::after {
    content: "🔒";
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 14px;
    background: #fff;
    border-radius: 50%;
}
/* ドラッグ中のスタイル */
.lesson-card.dragging {
    opacity: 0.5;
}

/* --- 時間割グリッドエリアのスタイル --- */
#timetable-area {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-x: auto; /* 横スクロールを許可 */
}

/* グリッドコンテナの設定 */
.grid-container {
    display: grid;
    /* 列の定義: JSで動的に設定されますが、初期値として定義 
      1列目: 教員名 (固定幅 100px)
      2列目以降: 5曜日 × 6コマ = 30列 (各 80px幅)
    */
    grid-template-columns: 100px repeat(30, 80px);
    
    /* 行の定義 (修正):
       1行目: 曜日ヘッダー (35px) - 少し高さを確保
       2行目: 時限ヘッダー (30px)
       3行目以降: 教員データ行 (最低75px, 中身に応じて自動)
    */
    grid-template-rows: 35px 30px; 
    grid-auto-rows: minmax(75px, auto);

    /* 罫線設定 (修正): gapを1pxにしてシャープに、背景色を罫線色として利用 */
    gap: 1px;
    background-color: #b0bec5; /* 落ち着いたグレーの罫線色 */
    border: 1px solid #b0bec5; /* 外枠 */
    
    /* コンテンツ幅に合わせて背景（罫線）を伸ばす設定 */
    min-width: max-content;
}

/* グリッド内のセル共通スタイル */
.grid-cell {
    background-color: #fff;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 13px;
    color: #333;
    /* ★追加: 枠線を幅に含める設定（これをしないと縦線を追加した時にズレます） */
    box-sizing: border-box; 
}

/* ヘッダーセル（共通） */
.header-cell {
    background-color: #37474f; /* 濃いブルーグレー */
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* 左上の角セル（教員/時限）: 縦に2行分結合するためのクラス */
.corner-cell {
    grid-row: 1 / span 2; /* 1行目から2行分またぐ */
    z-index: 20; /* 最前面に表示 */
    background-color: #263238; /* さらに濃い色で強調 */
    border-bottom: 2px solid #546e7a; /* アクセント線 */
    
    /* ★追加: 強制的に1行表示にし、余白を調整 */
    white-space: nowrap; 
    padding: 0 5px; /* 左右の余白を少し減らして文字スペースを確保 */
}

/* 曜日セル: 横に6コマ分結合するためのクラス */
.day-cell {
    grid-column: span 6; /* 6列分またぐ */
    font-size: 15px;
    background-color: #455a64;
    border-bottom: 1px solid #607d8b; /* 下線 */
    /* ★追加: 右側に明るい区切り線を入れる */
    border-right: 1px solid rgba(255, 255, 255, 0.3); 
}

/* 教員名セル（左端） */
.teacher-cell {
    background-color: #546e7a; /* 青みのあるグレー */
    color: #fff;
    font-weight: bold;
    
    /* 配置調整 */
    display: flex;
    justify-content: center; /* ★変更: 水平方向を中央寄せ */
    align-items: center;     /* 垂直方向を中央寄せ */
    text-align: center;      /* ★追加: 2行になった時の文字を行内で中央揃え */
    
    padding: 0 2px;          /* ★変更: 左の大きな余白(12px)を削除し、バランス調整 */
    
    position: sticky; /* 横スクロールしても左端に固定 */
    left: 0;
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1); /* 列固定時の影 */
    
    /* 自動折り返しを防ぎつつ、データ内の改行(\n)は反映する設定 */
    white-space: pre; 
    line-height: 1.2; /* 複数行になった際の行間を少し詰める */
}

/* 通常の授業配置セル */
.slot-cell {
    background-color: #fff;
    transition: background-color 0.15s ease-in-out; /* 色変化をスムーズに */
    position: relative;
}

/* ★追加: マウスを乗せた時の視線誘導（ホバー効果） */
.slot-cell:hover {
    background-color: #f5f5f5; /* わずかにグレーに */
    box-shadow: inset 0 0 0 2px #bbdefb; /* 青い内枠で強調 */
    z-index: 1; /* 線の上に表示 */
}
/* ★追加: 6限目（1日の終わり）のセルの右側に、曜日区切りの太い縦線を入れる */
.slot-cell[data-period="6"] {
    border-right: 2px solid #78909c; /* 濃いブルーグレーの縦線 */
    z-index: 5; /* 線を前面に出す */
}

/* ドラッグオーバー時のハイライト */
.slot-cell.drag-over {
    background-color: #e8f5e9; /* 薄い緑色 */
    box-shadow: inset 0 0 0 2px #4caf50; /* 緑の枠線 */
    z-index: 2;
}
/* --- Phase 3: バリデーション用スタイル --- */

/* 配置可能（OK）なセルのハイライト：薄い緑 */
.slot-cell.valid-target {
    background-color: #dcedc8;
    border: 2px dashed #8bc34a;
}

/* 配置不可（NG）なセルのハイライト：薄い赤＋斜線のような演出 */
.slot-cell.invalid-target {
    background-color: #ffcdd2;
    border: 2px solid #e57373;
    position: relative;
    cursor: not-allowed;
}

/* NGセルの上にドラッグした時は、より強調する */
.slot-cell.invalid-target.drag-over {
    background-color: #ef9a9a;
}
/* --- Phase 7: 教員設定モーダルとNGセルのスタイル --- */

/* モーダルの背景（オーバーレイ） */
.modal-overlay {
    display: none; /* デフォルトは非表示 */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

/* モーダル本体 */
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.modal-body {
    display: flex;
    gap: 20px;
}

/* モーダル内のレイアウト（左：リスト、右：編集フォーム） */
.teacher-list-area {
    flex: 1;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.teacher-edit-area {
    flex: 1;
}

/* 教員リストアイテム */
.teacher-item {
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.teacher-item:hover { background-color: #f5f5f5; }
.teacher-item.selected { background-color: #e3f2fd; font-weight: bold; }

/* NG設定用のチェックボックスグリッド */
.ng-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 曜日ラベル+6コマなので7列にする */
    align-items: center; /* チェックボックスを上下中央に */
    gap: 5px;
    margin-top: 10px;
}
.ng-cell {
    text-align: center;
    font-size: 12px;
}
.ng-checkbox {
    transform: scale(1.2);
}

/* 時間割グリッド上のNG（出張など）セル */
.slot-cell.unavailable {
    background-color: #cfd8dc; /* 濃いグレー */
    background-image: linear-gradient(45deg, #b0bec5 25%, transparent 25%, transparent 50%, #b0bec5 50%, #b0bec5 75%, transparent 75%, transparent);
    background-size: 10px 10px; /* 斜線パターン */
    cursor: not-allowed;
    position: relative;
}
.slot-cell.unavailable::after {
    content: "✕";
    position: absolute;
    color: #546e7a;
    font-size: 20px;
    opacity: 0.5;
    pointer-events: none;
}
/* --- Phase 8: 授業設定モーダル用スタイル --- */

/* カラー選択用のラジオボタン風スタイル */
.color-picker {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    flex-wrap: wrap;
}
.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.1s;
}
.color-option:hover { transform: scale(1.1); }
.color-option.selected {
    border-color: #333;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transform: scale(1.2);
}

/* フォームの行間調整 */
.form-row {
    margin-bottom: 15px;
}
.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}
.form-row input, .form-row select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 授業リスト（教員リストと同じスタイルを少し調整） */
.lesson-list-item {
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lesson-list-item:hover { background-color: #f5f5f5; }
.lesson-list-item.selected { background-color: #e3f2fd; font-weight: bold; }
/* 小さな色丸を表示 */
.lesson-color-dot {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #ccc;
}
/* --- 初期設定モーダル用スタイル --- */
.master-list-container {
    border: 1px solid #ddd;
    height: 200px;
    overflow-y: auto;
    background: #fafafa;
    padding: 5px;
}

.master-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.master-list-item:last-child {
    border-bottom: none;
}

.delete-icon-btn {
    background: #ef5350;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}
/* --- Phase 8: ファイル管理モーダル用スタイル --- */
.file-list-container {
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 4px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    transition: background-color 0.2s;
}

.file-item:last-child {
    border-bottom: none;
}

.file-item:hover {
    background-color: #f1f8e9;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: bold;
    font-size: 15px;
    color: #333;
}

.file-meta {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

.file-actions {
    display: flex;
    gap: 5px;
}

.file-btn {
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: white;
}

.file-btn.load { background-color: #2196f3; }
.file-btn.overwrite { background-color: #ff9800; }
.file-btn.delete { background-color: #f44336; }

.file-btn:hover { opacity: 0.8; }
/* --- Phase 9: 印刷機能用の設定 --- */
@media print {
    @page {
        size: A4 landscape; /* A4横向き */
        margin: 5mm;        /* 余白を最小に */   
    }

    body {
        margin: 0;
        padding: 0;
        background-color: #fff;
        /* 背景色（授業カードの色）を正確に印刷する */
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;

        /* 重要: グリッド全体をA4横幅に収めるための縮小設定 */
        /* コンテンツ幅が広いため、A4横に入るよう45%程度に縮小 */
        zoom: 0.45; 
    }

    /* 印刷時に不要な要素をすべて非表示にする */
    header,
    #palette-area,
    .modal-overlay,
    #auto-alloc-btn,
    #initial-settings-btn,
    #teacher-settings-btn,
    #lesson-settings-btn,
    #reset-btn,
    #download-btn,
    #undo-btn,
    #redo-btn,
    #json-save-btn,
    #json-load-btn,
    #file-manager-btn,
    #print-btn {
        display: none !important;
    }

    /* レイアウトの余白などをリセット */
    .app-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    #timetable-area {
        box-shadow: none;
        padding: 0;
        margin: 0;
        overflow: visible; /* スクロールバーを消す */
    }

    .grid-container {
        border: none; /* 外枠を消す */
        background-color: #666; /* 罫線色を少し濃くして視認性を上げる */
        min-width: 0;
    }

    /* カードの枠線を印刷用に調整 */
    .lesson-card {
        border: 1px solid #333;
        box-shadow: none;
    }
    
    /* ヘッダーセルの文字色調整 */
    .header-cell, .teacher-cell {
        background-color: #ccc !important; /* インク節約のためグレーに */
        color: #000 !important;
        border: 1px solid #666;
    }
    /* 印刷時は重複警告スタイルを解除する */
    .lesson-card.duplicate-warning {
        border: 1px solid #333 !important;
        box-shadow: none !important;
    }
    .lesson-card.duplicate-warning::after {
        display: none !important; /* アイコンも消す */
    }
}  

/* --- タブ機能用スタイル --- */
.tab-container {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 2px;
    overflow-x: auto;
}

.tab-item {
    padding: 8px 16px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.tab-item:hover {
    background-color: #e0e0e0;
}

.tab-item.active {
    background-color: #fff;
    border-color: #ddd;
    border-bottom: 2px solid #fff; /* 下線を消してコンテンツと繋げる */
    font-weight: bold;
    color: #2196f3;
    margin-bottom: -4px; /* ボーダーに重ねる */
    z-index: 5;
}

.tab-close-btn {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    color: #999;
    cursor: pointer;
}
.tab-close-btn:hover {
    color: #f44336;
    background-color: #ffebee;
}

/* 印刷時はタブを隠す */
@media print {
    #tab-container, #open-selected-tabs-btn {
        display: none !important;
    }
}
/* --- Phase 10: ヘッダーツールバーの改修 --- */
/* ツールバー全体のコンテナ */
.toolbar-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* 縦位置中央揃え */
    gap: 16px; /* グループ間の隙間を広げる */
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 0 5px;
}

/* 各ボタングループの枠組み */
.toolbar-group {
    display: flex;
    align-items: center;
    gap: 8px; /* ボタン間の隙間 */
    padding: 16px 10px 10px 10px; /* 上部余白を確保 */
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    position: relative; /* ラベル配置の基準 */
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* グループ名（ラベル） */
.group-label {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #e3f2fd; /* 薄い青背景で見出しっぽく */
    color: #1565c0;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.2;
    border-radius: 10px;
    border: 1px solid #90caf9;
    z-index: 2;
}

/* 全ボタン共通スタイル */
.btn-base {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500; /* 文字を少し太く */
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap; /* 折り返し防止 */
    box-shadow: 0 2px 0 rgba(0,0,0,0.1); /* ボタンの立体感 */
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.btn-base:hover { 
    transform: translateY(-1px);
    box-shadow: 0 4px 4px rgba(0,0,0,0.15);
    filter: brightness(110%);
}
.btn-base:active {
    transform: translateY(1px);
    box-shadow: none;
}
.btn-base:disabled { 
    cursor: not-allowed; 
    opacity: 0.6; 
    background-color: #b0bec5 !important; /* 無効時はグレー */
    box-shadow: none;
    transform: none;
}

/* 各ボタンの色定義（視認性と意味合いを考慮して調整） */
.btn-green   { background-color: #2e7d32; } /* 緑（実行・メイン） */
.btn-bluegray{ background-color: #546e7a; } /* 青グレー（設定・ベース） */
.btn-brown   { background-color: #795548; } /* 茶（授業設定・区別用） */
.btn-red     { background-color: #d32f2f; } /* 赤（削除・警告） */
.btn-blue    { background-color: #1565c0; } /* 青（出力） */
.btn-purple  { background-color: #6a1b9a; } /* 紫（印刷・特殊出力） */
.btn-gray    { background-color: #757575; } /* グレー（操作・Undo/Redo） */
.btn-orange  { background-color: #f57c00; } /* オレンジ（データ保存・読込） */
.btn-teal    { background-color: #00897b; } /* ティール（管理） */
/* --- Phase 11: 教師別時数機能用スタイル --- */
.btn-indigo { 
    background-color: #3949ab; /* 鮮やかなインディゴブルー */
}

/* 集計表のスタイル */
.counts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.counts-table th, .counts-table td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: center;
}

.counts-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

.counts-table .teacher-name {
    text-align: left;
    background-color: #e3f2fd; /* 教員名は薄い青背景 */
    font-weight: bold;
}

.counts-table .total-cell {
    font-weight: bold;
    background-color: #fff3e0; /* 合計欄は薄いオレンジ */
}

.counts-table tr:hover {
    background-color: #fafafa;
}
/* --- フローティングウィンドウのスタイル --- */
.floating-window {
    position: fixed;
    top: 100px;
    left: 100px;
    width: 600px;
    max-height: 500px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1100; /* パレットより手前 */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.window-header {
    background-color: #3949ab;
    color: #fff;
    padding: 10px 15px;
    cursor: move; /* 移動可能カーソル */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    user-select: none;
}

.window-body {
    padding: 10px;
    overflow-y: auto;
    background-color: #fff;
    flex: 1;
}

.window-header .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.window-header .close-btn:hover {
    color: #ffcdd2;
}