/* Modal de demande de suppression de photo */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    pointer-events: auto !important;
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
    overflow: auto;
}

.char-counter {
    font-size: 0.8em;
    color: #666;
    text-align: right;
    margin-top: 2px;
}

.modal-actions {
    text-align: right;
    margin-top: 20px;
}

.btn-cancel,
.btn-submit {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.btn-cancel {
    margin-right: 10px;
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-submit {
    background: #dc3545;
    color: white;
}

.btn-submit:hover {
    background: #c82333;
}

.btn-submit:disabled {
    background: #e4606d;
    cursor: not-allowed;
}
