.card-header {
    border-radius: 8px 8px 0 0; /* Rounded top-left and top-right corners */
    background-color: #f8f9fa; /* Optional: Add a light background for contrast */
    padding: 10px; /* Optional: Add some padding for better spacing */
}

.selectable-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Light default shadow */
    background-color: #fff; /* Default white background */
}

.selectable-card:hover {
    border-color: #73ace9;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15); /* Slightly larger shadow on hover */
    transform: translateY(-5px); /* Adds a lift effect on hover */
}

.selectable-card input[type="radio"]:checked ~ .card-header,
.selectable-card input[type="radio"]:checked ~ .card-body {
    border-color: #73ace9;
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.3);
    background-color: rgba(115, 172, 233, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.selectable-card input[type="radio"]:checked ~ div {
    border-color: #73ace9;
    background-color: rgba(138, 147, 172, 0.1);
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.3);
}

/* Optional: Add fade-in animation for cards on load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selectable-card {
    animation: fadeIn 0.5s ease-in-out; /* Adds fade-in effect when cards appear */
}

.circle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e6effa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #3e5ba9;
}

.or-circle-icon {
    width: 20px;
    height: 20px;
    margin: 20px 1px;
    border-radius: 50%;
    background: #e6effa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #3e5ba9;
}

/* Mobile-specific margin */
@media (max-width: 576px) {
    .or-circle-icon {
        margin: 0px auto 20px;
    }
}
