/**
 * 返信ローディング表示のスタイル
 */

/* ローディングコンテナ */
.replies-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* スピナー */
.replies-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

/* スピナーアニメーション */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ローディングテキスト */
.replies-loading-text {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* ボタンのローディング状態 */
.loadReplies:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.loadReplies .fa-spinner {
    margin-right: 8px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .replies-loading {
        padding: 30px 15px;
    }
    
    .replies-loading-spinner {
        width: 32px;
        height: 32px;
        border-width: 3px;
    }
    
    .replies-loading-text {
        font-size: 13px;
    }
}
