/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #333;
}

.container {
    max-width: 600px; /* PCでの最大幅 */
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* スマホ対応：画面幅が狭い時 */
@media screen and (max-width: 480px) {
    .container {
        margin: 0;
        border-radius: 0;
        width: 100%;
    }
}

/* 項目デザイン：質問背景＋回答カラー */
.profile-section {
    margin-bottom: 15px;
}

.q-box {
    background: #e9ecef; /* 質問の背景色 */
    padding: 5px 10px;
    font-size: 0.85em;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

.a-box {
    padding: 10px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 4px 4px;
    margin-bottom: 10px;
}

/* --- カラーバリエーション --- */

/* 管理者（紫ネオン） */
.admin-user { background-color: #000; color: #fff; }
.admin-user .container { background: #000; border: 2px solid #a020f0; box-shadow: 0 0 15px #a020f0; }
.admin-user .q-box { background: #222; color: #a020f0; }
.admin-user .a-box { background: #000; border-color: #333; color: #fff; }

/* 1. さくら（パステルピンク） */
.theme-sakura .container { border-top: 8px solid #ffb6c1; }
.theme-sakura .q-box { background: #fff0f5; color: #db7093; }

/* 2. ミント（目に優しい緑） */
.theme-mint .container { border-top: 8px solid #98fb98; }
.theme-mint .q-box { background: #f0fff0; color: #2e8b57; }

/* 3. ラテ（落ち着いたベージュ） */
.theme-latte .container { border-top: 8px solid #d2b48c; }
.theme-latte .q-box { background: #f5f5dc; color: #8b4513; }

/* 4. ソラ（淡い青） */
.theme-sora .container { border-top: 8px solid #87ceeb; }
.theme-sora .q-box { background: #f0f8ff; color: #4682b4; }
/* ダークテーマの設定 */
body.theme-dark {
    background-color: #222 !important;
    color: #eee !important;
}

body.theme-dark .container {
    background-color: #333 !important;
    color: #eee !important;
    border-color: #444 !important;
}

body.theme-dark .q-box {
    background-color: #444 !important;
    color: #fff !important;
}

body.theme-dark .a-box {
    color: #ccc !important;
    border-bottom-color: #444 !important;
}