/* Styling for the history list */
.history-list {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.history-item {
    border: 1px solid #ddd; /* Add a light border */
    border-radius: 5px; /* Rounded corners */
    padding: 15px; /* Add padding inside the item */
    margin-bottom: 10px; /* Space between items */
    background-color: #f9f9f9; /* Light background color */
}

.history-item form {
    margin-bottom: 0;
}

.history-item p {
    margin: 5px 0; /* Reduce spacing between paragraphs */
}

.history-item form {
    margin-top: 10px; /* Add space above the form */
}

.history-item button {
    background-color: #0073aa; /* WordPress blue */
    color: #fff; /* White text */
    border: none; /* Remove border */
    border-radius: 3px; /* Rounded corners */
    padding: 8px 12px; /* Button padding */
    cursor: pointer; /* Pointer cursor on hover */
}

.history-item button:hover {
    background-color: #005177; /* Darker blue on hover */
}

.json-content {
    background-color: var(--somewhat-light-grey-background);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
}