/* Common styles for all form elements */
.page-entry input[type="text"],
.page-entry input[type="url"],
.page-entry textarea,
textarea[name="page_guide_greeting"] {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #2C3338;
}

/* All textareas */
textarea {
    min-height: 100px;
    resize: both;
}

/* All labels */
.page-entry label,
label[for="page_guide_greeting"] {
    display: block;
    font-weight: 500;
    color: #1d2327;
}

/* Common container styling */
.page-entry,
.wrap h2 + p {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Section headings */
.page-entry h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #1d2327;
}

.remove-page {
    margin-top: 10px;
    color: #dc3232;
}

.remove-page:hover {
    background-color: #a00 !important; /* Darker red on hover */
}