/* ウカガイ - カスタムスタイル */

.btn-enhanced {
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.score-display {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

/* ラジオボタンのスタイル改善 */
input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* 評価項目カードのホバー効果 */
.border.rounded-lg.p-4.bg-gray-50:hover {
    background-color: #f0f9ff;
    border-color: #3b82f6;
    transition: all 0.2s;
}

/* AI分析レポートのスタイル */
.ai-analysis-content {
    line-height: 1.8;
}

.ai-analysis-content h1,
.ai-analysis-content h2,
.ai-analysis-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.ai-analysis-content p {
    margin-bottom: 1rem;
}

.ai-analysis-content li {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.ai-analysis-content strong {
    font-weight: 600;
    color: #7c3aed;
}

/* グリッドカードのアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid > div {
    animation: fadeIn 0.3s ease-out;
}
