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

:root {
    /* Light Theme - Warm & Literary (matching MonoDraft/MonoFlow) */
    --bg-primary: #faf9f7;
    --bg-secondary: #f0ede8;
    --bg-tertiary: #e8e4dd;
    --text-primary: #2c2c2c;
    --text-secondary: #6b6b6b;
    --text-muted: #8a8a8a;
    --accent: #c45d3e;
    --accent-hover: #a84d32;
    --accent-secondary: #2d5a4a;
    --border-color: #e4e0db;
    --border-subtle: #ebe8e3;
    --toolbar-bg: rgba(250, 249, 247, 0.92);
    --shadow-sm: 0 1px 2px rgba(44, 44, 44, 0.04);
    --shadow-md: 0 4px 12px rgba(44, 44, 44, 0.08);
    --shadow-lg: 0 12px 32px rgba(44, 44, 44, 0.12);

    /* Sizing */
    --header-height: 56px;
    --toolbar-height: 48px;
    --status-bar-height: 40px;
    --touch-target-min: 44px;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Animation */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
}

[data-theme="dark"] {
    --bg-primary: #1c1b19;
    --bg-secondary: #282623;
    --bg-tertiary: #333028;
    --text-primary: #e8e4de;
    --text-secondary: #9a958c;
    --text-muted: #6e6a62;
    --accent: #e07a5f;
    --accent-hover: #eb8d74;
    --accent-secondary: #5fa386;
    --border-color: #3a3632;
    --border-subtle: #302d29;
    --toolbar-bg: rgba(28, 27, 25, 0.92);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
}

body {
    font-family: var(--font-ui);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background var(--duration-normal) var(--ease-out),
                color var(--duration-normal) var(--ease-out);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}

/* Selection */
::selection {
    background: var(--accent);
    color: white;
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--toolbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 20px;
    z-index: 100;
    transition: transform var(--duration-normal) var(--ease-out),
                opacity var(--duration-normal) var(--ease-out);
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-content {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

.brand-link:hover {
    color: var(--accent-hover);
}

.btn-menu {
    height: 36px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--duration-fast) var(--ease-out);
}

.btn-menu:hover {
    background: var(--bg-secondary);
    color: var(--accent);
}

.btn-menu svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions button {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}

.header-actions button:hover {
    background: var(--bg-tertiary);
}

.header-actions button.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    padding: 8px;
    background: transparent;
    border: 1px solid transparent;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: background var(--duration-fast) var(--ease-out);
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: all var(--duration-fast) var(--ease-out);
}

.hamburger-icon::before {
    top: -7px;
}

.hamburger-icon::after {
    top: 7px;
}

.mobile-menu-toggle:hover .hamburger-icon,
.mobile-menu-toggle:hover .hamburger-icon::before,
.mobile-menu-toggle:hover .hamburger-icon::after {
    background: var(--accent);
}

.header-actions-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== SIDEBAR ========== */
.document-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    z-index: 150;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform var(--duration-normal) var(--ease-out);
}

body.sidebar-open .document-sidebar {
    transform: translateX(0);
}

body.sidebar-open .header,
body.sidebar-open .main-content,
body.sidebar-open .toolbar,
body.sidebar-open .status-bar {
    margin-left: 280px;
}

.sidebar-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
}

.sidebar-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
    transition: all var(--duration-fast) var(--ease-out);
}

.btn-icon:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.sidebar-actions {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.btn-new-doc {
    width: 100%;
    padding: 10px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all var(--duration-fast) var(--ease-out);
}

.btn-new-doc:hover {
    background: var(--accent-hover);
}

.doc-search {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color var(--duration-fast) var(--ease-out);
}

.doc-search:focus {
    outline: none;
    border-color: var(--accent);
}

.doc-search::placeholder {
    color: var(--text-muted);
}

.document-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.document-item {
    padding: 12px;
    background: transparent;
    border-radius: 6px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

.document-item:hover {
    background: var(--bg-tertiary);
}

.document-item.active {
    background: var(--accent);
    color: white;
}

.document-item .doc-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.document-item .doc-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.document-item.active .doc-meta {
    color: rgba(255, 255, 255, 0.8);
}

.doc-actions {
    display: none;
    gap: 4px;
}

.document-item:hover .doc-actions,
.document-item.active .doc-actions {
    display: flex;
}

.doc-action-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0.7;
    transition: all var(--duration-fast) var(--ease-out);
}

.doc-action-btn:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.document-item.active .doc-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

body.sidebar-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

/* ========== TOOLBAR ========== */
.toolbar {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--toolbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 99;
    box-shadow: var(--shadow-md);
    transition: opacity var(--duration-normal) var(--ease-out),
                transform var(--duration-normal) var(--ease-out);
}

.toolbar button {
    padding: 8px 12px;
    font-size: 13px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}

.toolbar button:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.toolbar button.active {
    background: var(--accent);
    color: white;
}

.toolbar .separator {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 4px;
}

/* Filter buttons */
.filter-group {
    display: flex;
    gap: 2px;
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 2px;
}

.filter-group button {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.filter-group button.active {
    background: var(--accent);
    color: white;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: var(--status-bar-height);
    overflow-y: auto;
    padding: 80px 20px 20px;
    transition: margin-left var(--duration-normal) var(--ease-out);
}

.task-container {
    max-width: 640px;
    margin: 0 auto;
}

/* List Title */
.list-title-container {
    margin-bottom: 24px;
}

.list-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    border: none;
    background: transparent;
    width: 100%;
    padding: 0;
    outline: none;
}

.list-title::placeholder {
    color: var(--text-muted);
}

/* Add Task Input */
.add-task-container {
    margin-bottom: 24px;
}

.add-task-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.add-task-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.1);
}

.add-task-input::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .add-task-input:focus {
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
}

/* Task List */
.task-list {
    list-style: none;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

.task-item:hover {
    background: var(--bg-tertiary);
}

.task-item.completed {
    opacity: 0.7;
}

.task-item.completed .task-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Custom Checkbox */
.task-checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 2px;
}

.task-checkbox:hover {
    border-color: var(--accent);
}

.task-checkbox.checked {
    background: var(--accent);
    border-color: var(--accent);
}

.task-checkbox.checked::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Task Text */
.task-text {
    flex: 1;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.5;
    border: none;
    background: transparent;
    outline: none;
    resize: none;
    min-height: 24px;
}

.task-text::placeholder {
    color: var(--text-muted);
}

/* Task Actions */
.task-actions {
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-out);
}

.task-item:hover .task-actions {
    opacity: 1;
}

.task-delete {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: all var(--duration-fast) var(--ease-out);
}

.task-delete:hover {
    background: rgba(196, 93, 62, 0.1);
    color: var(--accent);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-state-text {
    font-size: 14px;
}

/* ========== STATUS BAR ========== */
.status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--status-bar-height);
    background: var(--toolbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    z-index: 50;
    transition: opacity var(--duration-normal) var(--ease-out),
                margin-left var(--duration-normal) var(--ease-out);
}

.status-left,
.status-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-bar .save-status {
    color: var(--accent-secondary);
}

/* ========== EXPORT MENU ========== */
.export-wrapper {
    position: relative;
}

.export-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--duration-fast) var(--ease-out);
    z-index: 200;
}

.export-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.export-menu button {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--duration-fast) var(--ease-out);
}

.export-menu button:hover {
    background: var(--accent);
    color: white;
}

/* ========== ABOUT MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-primary);
    border-radius: 14px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-out);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    font-size: 20px;
    transition: all var(--duration-fast) var(--ease-out);
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin: 0 0 24px;
    font-size: 16px;
}

.modal-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}

.modal-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--text-primary);
}

.modal-content ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.modal-content kbd {
    display: inline-block;
    padding: 2px 6px;
    font-size: 12px;
    font-family: var(--font-ui);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
}

.modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.modal-footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.modal-footer a:hover {
    color: var(--accent-hover);
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    z-index: 500;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========== FOCUS MODE ========== */
.focus-trigger {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 200;
    pointer-events: none;
}

body.focus-mode .focus-trigger {
    pointer-events: all;
}

body.focus-mode .header,
body.focus-mode .toolbar,
body.focus-mode .status-bar {
    opacity: 0;
    pointer-events: none;
}

body.focus-mode:has(.focus-trigger:hover) .header,
body.focus-mode:has(.header:hover) .header,
body.focus-mode .header:hover,
body.focus-mode:has(.focus-trigger:hover) .toolbar,
body.focus-mode .toolbar:hover {
    opacity: 1;
    pointer-events: all;
}

body.focus-mode:has(.focus-trigger:hover) .status-bar,
body.focus-mode:has(.header:hover) .status-bar,
body.focus-mode .status-bar:hover {
    opacity: 1;
    pointer-events: all;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-actions-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 8px;
        margin-top: 8px;
        box-shadow: var(--shadow-md);
        display: none;
        flex-direction: column;
        gap: 4px;
        min-width: 160px;
        z-index: 110;
    }

    .header-actions-menu.active {
        display: flex;
    }

    .header-actions-menu button {
        width: 100%;
        justify-content: flex-start;
    }

    .toolbar {
        left: 12px;
        right: 12px;
        transform: none;
        border-radius: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    body.sidebar-open .header,
    body.sidebar-open .main-content,
    body.sidebar-open .toolbar,
    body.sidebar-open .status-bar {
        margin-left: 0;
    }

    .document-sidebar {
        width: 100%;
        max-width: 320px;
    }

    .main-content {
        padding: 70px 16px 16px;
    }

    .list-title {
        font-size: 26px;
    }

    .add-task-input {
        padding: 14px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 12px;
    }

    .toolbar {
        left: 8px;
        right: 8px;
        padding: 4px;
    }

    .toolbar button {
        padding: 6px 8px;
        font-size: 12px;
    }

    .main-content {
        padding: 65px 12px 12px;
    }

    .task-container {
        max-width: 100%;
    }

    .list-title {
        font-size: 24px;
    }

    .task-item {
        padding: 12px;
    }

    .task-text {
        font-size: 15px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .task-actions {
        opacity: 1;
    }

    .doc-actions {
        display: flex;
    }

    button {
        min-height: var(--touch-target-min);
    }
}

/* Print styles */
@media print {
    .header,
    .toolbar,
    .status-bar,
    .document-sidebar,
    .sidebar-overlay,
    .task-actions,
    .add-task-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .main-content {
        position: static;
        padding: 20px;
    }

    .task-item {
        background: transparent;
        border: 1px solid #ddd;
    }
}
