body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header, nav, main, footer {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
}

.writings-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.writings-button:hover {
    background: #34495e;
    text-decoration: none;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

h1, h2 {
    color: #2c3e50;
}

section {
    margin-bottom: 30px;
}

footer {
    text-align: center;
    font-size: 0.9em;
}

/* Add these to your existing styles */
header p a {
    color: #333;
    text-decoration: none;
}

header p a:hover {
    text-decoration: underline;
}

#short-form, #long-form {
    margin-bottom: 2em;
}

/* Add this at the end of your existing styles */
.hidden {
    display: none;
}

/* Select Writings styles */
.writing-entry {
    margin-bottom: 3em;
    padding-bottom: 2em;
    border-bottom: 1px solid #e0e0e0;
}

.writing-entry:last-child {
    border-bottom: none;
}

.writing-title {
    margin-bottom: 0.5em;
    font-size: 1.5em;
}

.writing-title a {
    color: #2c3e50;
    text-decoration: none;
}

.writing-title a:hover {
    text-decoration: underline;
}

.writing-meta {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.writing-status {
    padding: 0.2em 0.6em;
    border-radius: 3px;
    font-weight: 500;
    text-transform: lowercase;
}

.status-draft {
    background-color: #fff3cd;
    color: #856404;
}

.status-complete {
    background-color: #d4edda;
    color: #155724;
}

.status-in-progress {
    background-color: #d1ecf1;
    color: #0c5460;
}

.writing-date {
    color: #666;
}

.writing-abstract {
    line-height: 1.6;
    color: #333;
}

.writing-abstract p {
    margin: 0;
}