@charset "utf-8";

/**
 * PigeonCloud カスタムCSSサンプル
 * テーマ: コーポレート・ネイビー & アクセントオレンジ
 * 
 * このサンプルでは、システムの標準的な配色をより引き締まったビジネス向けの印象に変更します。
 * 注意: IDやクラス名はシステムのバージョンアップにより変更される可能性があります。
 */

/* ==========================================================================
   共通設定 (全体的なトーン)
   ========================================================================== */

/* 全体的なフォントサイズの調整と背景色の微調整 */
body {
    background-color: #f8fafc;
    color: #334155;
}

/* ==========================================================================
   一覧ページ (#pc-list-view)
   ========================================================================== */

/* テーブル全体の境界線と影 */
#pc-list-view table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ヘッダー部分をネイビーに変更 */
#pc-list-view table th {
    background-color: #1e3a5f !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 15px;
    border-bottom: 2px solid #e67e22; /* アクセントカラーのライン */
}

/* 行のホバー効果とストライプ */
#pc-list-view table tr:nth-child(even) {
    background-color: #f1f5f9;
}

#pc-list-view table tr:hover {
    background-color: #e2e8f0;
    transition: background-color 0.2s ease;
}

/* セル内のパディング調整 */
#pc-list-view table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e2e8f0;
}

/* ==========================================================================
   詳細ページ (#pc-detail-view)
   ========================================================================== */

/* カード形式のレイアウト調整 */
#pc-detail-view {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border-left: 5px solid #1e3a5f; /* 左側にアクセントライン */
}

/* 項目名（ラベル）のスタイル */
#pc-detail-view .pc-field-label {
    color: #475569;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 4px;
}

/* 値のスタイル */
#pc-detail-view .pc-field-value {
    color: #1e3a5f;
    font-size: 1rem;
    padding-bottom: 12px;
    border-bottom: 1px dashed #cbd5e1;
    margin-bottom: 15px;
}

/* 行ごとの余白 */
#pc-detail-view .pc-view-row {
    margin-bottom: 20px;
}

/* ==========================================================================
   編集ページ (#pc-edit-view)
   ========================================================================== */

/* 入力エリアの強調 */
#pc-edit-view .pc-field-block {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

/* フォーカス時の色合い */
#pc-edit-view .pc-field-block:focus-within {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* 入力フォーム（input/textarea）のスタイル */
#pc-edit-view input[type="text"],
#pc-edit-view textarea,
#pc-edit-view select {
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 8px 12px;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   ボタン・パーツ系 (推測される共通クラス)
   ========================================================================== */

/* プライマリボタンをネイビーに */
.btn-primary, 
input[type="submit"], 
button[type="submit"] {
    background-color: #1e3a5f !important;
    border-color: #1e3a5f !important;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
}

/* ボタンホバー時にオレンジをアクセントに */
.btn-primary:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: #e67e22 !important;
    border-color: #e67e22 !important;
}

/* セカンダリボタン（キャンセル等） */
.btn-secondary {
    background-color: #94a3b8 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   その他
   ========================================================================== */

/* スクロールバーのカスタマイズ (WebKit系) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e3a5f;
}

/**
 * Version: 1.1.0
 * Created: 2026-04-20
 * Author: PigeonCloud Support Team
 */
