/* pf-comment-popup.css : popup textarea pour les champs commentaire */

/* Apparence du champ commentaire (cliquable, fond blanc, hover discret) */
input.pf-comment, input[data-pf-comment] {
    cursor: pointer;
    background: #fff;
}
input.pf-comment:hover, input[data-pf-comment]:hover {
    background: #F5F8FF;
    border-color: #1E5C9B;
}

/* Modale */
#pf-comment-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
#pf-comment-modal.show { display: flex; }

.pf-comment-modal-box {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pf-comment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.pf-comment-modal-title {
    font-weight: bold;
    color: #1E5C9B;
    font-size: 1.05rem;
}
.pf-comment-modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #888;
    padding: 0 4px;
}
.pf-comment-modal-box textarea {
    width: 100%;
    min-height: 160px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
}
.pf-comment-modal-box input#pf-comment-modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.1rem;
    box-sizing: border-box;
    font-family: inherit;
}
.pf-comment-modal-footer {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.pf-comment-modal-footer .btn { flex: 1; }
