.accept-nba-btn, .reject-nba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.accept-nba-btn:hover, .reject-nba-btn:hover {
    background-color: #f5f5f5;
}

/* Checkmark (✓) */
.accept-nba-btn::before {
    content: "✔";
    font-size: 18px;
    color: gray;
}

/* Cross (✖) */
.reject-nba-btn::before {
    content: "✖";
    font-size: 18px;
    color: gray;
}
