* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    background: #FAF3E0;
    color: #000000;
    padding: 20px;
}

.adhd-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 10px;
    vertical-align: middle;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8b4513;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #f0f0e8;
    padding-bottom: 30px;
}

.blog-title {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: normal;
}

.blog-subtitle {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.post {
    margin-bottom: 10px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0e8;
}

.post:last-child {
    border-bottom: none;
}

.post-title {
    font-size: 1.2em;
    margin-bottom: 5px;
    line-height: 1.3;
}

/* Individual post titles (h1) should be bigger */
h1.post-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Index page post titles (h2) keep smaller size but closer spacing */
h2.post-title {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.post-title a {
    color: #000000;
    text-decoration: none;
}

.post-title a:hover {
    color: #8b4513;
    text-decoration: underline;
}

.post-date {
    color: #8b4513;
    font-size: 0.95em;
    margin-bottom: 25px;
    font-style: italic;
}

.post-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.post-content h3 {
    font-size: 1.4em;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.post-content a {
    color: #8b4513;
    text-decoration: underline;
}

.post-content blockquote {
    margin: 25px 0;
    padding: 20px 30px;
    background: #faf9f2;
    border-left: 4px solid #d4b896;
    font-style: italic;
}

.bionic-word {
    font-weight: normal;
}

.bionic-highlight {
    font-weight: bold;
}

.back-nav {
    display: inline-block;
    margin-bottom: 20px;
    color: #8b4513;
    text-decoration: none;
    font-size: 0.95em;
}

.back-nav:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f0f0e8;
    color: #666;
    font-size: 0.9em;
}

