/* カスタムスタイル */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* カードのホバーエフェクト */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* スクロールバーのカスタマイズ */
.list-group-flush::-webkit-scrollbar {
    width: 8px;
}

.list-group-flush::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.list-group-flush::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.list-group-flush::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ボタンのアニメーション */
.btn {
    transition: all 0.3s;
}

/* アラートのアニメーション */
.alert {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* プランカードの強調 */
.border-3 {
    border-width: 3px !important;
}

/* フッターの固定 */
footer {
    margin-top: auto;
}
