body {
    background-color: #f8f9fa; /* 부드러운 배경색 */
    font-family: Arial, sans-serif;
}

.card {
    border-radius: 15px; /* 카드 모서리 둥글게 */
    background-color: #ffffff; /* 카드 배경 흰색 */
}

button {
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3; /* 버튼 호버 시 더 짙은 파란색 */
}
