.custom-col {
    flex: 0 0 25%;  /* Ensure columns take up 25% of the row's width for 4 columns on larger screens */
    max-width: 25%;
    padding: 10px;
}

@media (max-width: 1200px) {
    .custom-col {
        flex: 0 0 33.33%;  /* 3 columns per row for smaller large screens */
        max-width: 33.33%;
    }
}

@media (max-width: 992px) {
    .custom-col {
        flex: 0 0 50%;  /* 2 columns per row for medium screens */
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .custom-col {
        flex: 0 0 100%;  /* 1 column per row for smaller screens */
        max-width: 100%;
    }
}

.card {
    margin: 10px;
    border-radius: 8px;  /* Slightly rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
}

.team-logo {
    width: 150px;
    height: 150px;
    margin: 10px;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn {
    margin-top: 15px;
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
}
