.select-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: center;
    max-width: 900px; /* 少し広めに */
    margin: 5px auto;
}

.card-select-option {
    border: 2px solid #dee2e6; /* デフォルトのボーダー */
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    height: 100%; /* カードの高さを揃える */
}

.card-body {
    padding: 25px;
}
.card-select-option img {
    max-height: 120px; /* サンプル画像の高さ調整 */
    width: auto;
    margin-bottom: 15px;
    border: 1px solid #eee; /* 画像のボーダー */
    border-radius: 5px;
}
.card-select-option h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.card-select-option p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
