/**
 * 提供設定メール送信履歴のスタイル
 * 
 * メール送信履歴を表示する画面のスタイル定義
 * 送信されたメールの内容を確認する機能を提供
 */

/* ========================================
   メインコンテナ
   ======================================== */

.email-history-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
}

/* ========================================
   ツールバー
   履歴件数の表示と操作ボタン
   ======================================== */

.email-history-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ツールバーのステータス表示 */
.email-history-status {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* ツールバーのボタングループ */
.email-history-buttons {
    display: flex;
    gap: 10px;
}

/* ボタンのスタイル */
.email-history-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 80px;
}

/* ========================================
   履歴表示エリア
   メール送信履歴の内容を表示するコンテナ
   ======================================== */

.email-history-display-container {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* スクロール可能な履歴表示エリア */
.email-history-display-content {
    max-height: 600px;
    overflow-y: auto;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
}

/* メール履歴の内容テキスト（等幅フォント） */
.email-history-content {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* ========================================
   レスポンシブ対応
   タブレット・スマートフォン向けのレイアウト調整
   ======================================== */

/* タブレット・スマートフォン向け（768px以下） */
@media (max-width: 768px) {
    .email-history-container {
        padding: 10px;
    }

    /* ツールバーを縦並びに */
    .email-history-toolbar {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    /* ボタンを横幅いっぱいに */
    .email-history-buttons {
        justify-content: stretch;
    }

    /* 各ボタンを均等に配置 */
    .email-history-buttons button {
        flex: 1;
    }

    /* スマートフォンでの表示高さを調整 */
    .email-history-display-content {
        max-height: 400px;
    }

    /* フォントサイズを小さく */
    .email-history-content {
        font-size: 12px;
    }
}
