.card {
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content .models-list {
    margin-left: 1rem;
}

.models-list:nth-of-type(1) li::before {
    content: '\271A';
    color: green;
    margin-right: 10px;
}

.models-list:nth-of-type(2) li::before {
    content: '\2212';
    color: red;
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 10px;
    line-height: 1;
}

.models-list li {
    list-style-type: none;
}

.card.phase {
    background-color: #ffffff;
    transition: transform 0.2s ease;
}

.card.phase:hover {
    transform: scale(1.02);
}
