/* General styles for the petition elements */
.petition {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.petition h2 {
    margin-top: 0;
    text-align: center;
}
.petition h3 {
    margin-top: 0;
}

.petition img {
    max-width: 100%;
    height: auto;
}

/* Styles for the signature form */
.petition form {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    margin-top: 20px;
}

.petition form p {
    margin-bottom: 10px;
}

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

.petition form input[type="text"],
.petition form input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.petition form input[type="checkbox"] {
    margin-right: 5px;
}

.petition form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.petition form input[type="submit"]:hover {
    background-color: #006799;
}

/* Admin dashboard styles */
.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}

.wp-list-table th,
.wp-list-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.wp-list-table th {
    background-color: #f1f1f1;
}

.full-width-textarea {
    width: 100%;
    box-sizing: border-box; /* ensures padding doesn't affect the width */
}
.half-divider {
    width: 50%;
    height: 1px;
    background-color: black;
    margin: 3rem auto; /* Center the divider */
}
