/* =========================
   CONTAINER
========================= */
.wpld-container {
    margin-top: 20px;
}

/* =========================
   BOUTONS (Like / Dislike / OK)
========================= */
.wpld-container button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #9ca3af;
    background: #f6f7f9;
    color: #1d2327;
    transition: all 0.25s ease;
}

/* Hover commun */
.wpld-container button:hover {
    background: #6b7280;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(107,114,128,.35);
}

/* =========================
   LIKE
========================= */
.wpld-like {
    border-color: #9ca3af;
}

/* =========================
   DISLIKE
========================= */
.wpld-dislike {
    border-color: #9ca3af;
}

/* =========================
   TEXTE QUESTION
========================= */
.wpld-question {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
}

/* =========================
   REMARQUE + OK (même ligne)
========================= */


/* Textarea = 50% */
/*.wpld-remark {
    width: 50%;
    min-height: 70px;
    resize: vertical;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccd0d4;
    font-size: 14px;
    transition: border-color 0.2s ease;
}*/

.wpld-remark:focus {
    outline: none;
    border-color: #6b7280;
}

/* Bouton OK */
.wpld-send-dislike {
    height: 42px;
    padding: 0 20px;
}

/* =========================
   MESSAGE FINAL
========================= */
.wpld-result.voted {
    font-weight: 600;
    color: #16a34a;
    margin-top: 10px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
    .wpld-remark-box {
        flex-direction: column;
        align-items: stretch;
    }

    .wpld-remark {
        width: 100%;
    }

    .wpld-send-dislike {
        align-self: flex-end;
    }
}

/* Pagination container */
.wpld-pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

/* UL WordPress */
.wpld-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Links */
.wpld-pagination a,
.wpld-pagination span {
    display: block;
    padding: 8px 14px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    background: #fff;
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

/* Hover */
.wpld-pagination a:hover {
    background: #f0f6fc;
}

/* Active */
.wpld-pagination .current {
    background: #1d2327;
    color: #fff;
    border-color: #1d2327;
}

/* Mobile */
@media (max-width: 600px) {
    .wpld-pagination ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.wpld-remark{
        width: 50% !important;
        font-size: 14px;
}
