#bballModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

#bballModal {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

#bballModal p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.5;
}

#bballModal .modal-buttons {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

#bballModal .modal-buttons button {
    flex: 1;
    padding: 10px 15px;
    font-size: 1em;
    margin-top: 0;
    width: auto;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

#bballModalYesBtn {
    background-color: #28a745;
    color: white;
}

#bballModalYesBtn:hover {
    background-color: #218838;
}

#bballModalNoBtn {
    background-color: #dc3545;
    color: white;
}

#bballModalNoBtn:hover {
    background-color: #c82333;
}

@media (max-width: 600px) {
    #bballModal {
        padding: 20px 25px;
    }
    #bballModal p {
        font-size: 1em;
    }
    #bballModal .modal-buttons {
        flex-direction: column;
    }
}
