/* Leave Club Modal Styles */
.leave-club-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.leave-club-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
}

.leave-club-modal .modal-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.leave-club-modal .modal-footer button {
    min-width: 100px;
}