/* Teams page specific styles */

.team-card {
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

a:hover .team-card {
    background-color: rgba(13, 110, 253, 0.1);
    transform: translateY(-1px);
}

/* Ensure team name color stays consistent when wrapped in link */
a .card-title {
    color: inherit;
}