.cpr-photo-request-checkbox label {
    text-align: center;
    cursor: pointer;
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cpr-photo-request-checkbox label input {
    width: 20px;
    height: 20px;
}

.cpr-photo-request-checkbox {
    background: #efefef;
    padding: 1rem;
    position: fixed;
    text-align: center;
    top: 100px;
    right: 20px;
    z-index: 100;
    border-radius: 12px;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modal styles */
.cpr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.cpr-modal-content {
    font-family: sans-serif;;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 5px;
    text-align: right;
}

.cpr-close {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.cpr_photo_type {
    height: 35px;
    border-radius: 8px;
}

.cpr-close:hover, .cpr-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#cpr-photo-request-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1.2rem 0;
}

#cpr-photo-type, #cpr-photo-description, #cpr-save-button {
    width: 100%;
}

#cpr-save-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 3px;
}

#cpr-save-button:hover {
    background-color: #005a8c;
}

#cpr-edit-button {
    transition: all 0.3s;
}

#cpr-edit-button:hover {
    color: #f7377f;
}

@media (min-width: 992px) {
    .cpr-photo-request-checkbox label {

    }
}