.bc-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.bc-modal-content {
    background-color: #000;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    color: #fff; /* Ensure text is readable on dark background */
}

.bc-modal-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.bc-modal-content h2 {
    margin-top: 0;
    font-family: inherit;
    font-size: 25px;
    color: #fff;
}

.bc-modal-content input[type="file"] {
    margin-bottom: 10px;
    color: #fff;
}

.bc-modal-content button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

button#bc-upload-picture {
    font-size: 14px;
    background: #eee;
    color: black;
    border: none;
    border-radius: 2px;
}

button#bc-upload-picture:hover {
    background: #ddd;
}

button#bc-remove-picture {
    border-radius: 2px;
    background: #111;
    color: white;
    border: none;
}

#bc-profile-picture-message {
    margin-top: 10px;
    color: #fff;
}

span.ct-media-container-static {
    cursor: pointer;
}