
#click-party-button {
    font-size: 20px;
    padding: 15px 30px;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.click-party-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.click-party-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
}

.click-party-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
