﻿.section-title {
    color: #0d6efd;
}

.card {
    border: 1px solid #e2e5ec;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* Hover animation */
    .card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 0.8rem 1.6rem rgba(13, 110, 253, 0.15);
    }

.card-header {
    background-color: #fff;
    border-bottom: none;
}

.card-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d6efd;
    min-width: 2.5rem;
    text-align: center;
}

.card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #212529;
}

/* Custom list styling */
.check-list li {
    position: relative;
    list-style:none;
    padding-left: 1.25rem;
    margin-bottom: 0.45rem;
}

    .check-list li::before {
        content: "\f135"; /* bootstrap icon: check2-circle */
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 0.15rem;
        font-size: 0.8rem;
        color: #0d6efd;
    }

.card-body ul ul {
    margin-top: 0.25rem;
}
