/**
 * インラインCSSからCSSファイルに抽出したスタイル
 */

/* エラーメッセージコンテナ */
.error-message-container {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* アクションボタン */
.action-button {
    background-color: #0275d8;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.action-button:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}

/* テーブルセルサイズ */
.min-width-cell {
    min-width: 70px;
}

/* カラム修正用リンク */
.column-fix-link {
    color: white;
    text-decoration: underline;
}

.column-fix-link:hover {
    color: #f0f0f0;
}

/* URLスラッグ表示スタイル */
.url-slug-display {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 3px 6px;
    color: #6c757d;
    display: inline-block;
    font-family: monospace;
    font-size: 0.9em;
}

.url-slug-empty {
    color: #dc3545;
    font-style: italic;
    font-size: 0.9em;
}

/* 読み取り専用スタイル */
textarea.readonly {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    cursor: not-allowed;
    color: #6c757d;
}

/* ポップアップ関連の追加スタイル */
.popup-close-button {
    outline: none;
    box-shadow: none;
    float: right;
    margin-right: 0;
    margin-left: auto;
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.popup-actions-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-close-btn {
    min-width: 120px;
    font-size: 1.1rem;
    padding: 10px 0;
}

/* テスト用メッセージ - 後に削除予定 */
.test-message {
    text-align: center;
    margin-top: 20px;
}

/* メモプレビュー */
.memo-preview-hidden {
    display: none;
}
