/* --- Printable To-Do List Styles --- */

@media print {
    /* --- General Reset & Page Setup --- */
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: #fff;
        color: #000;
        font-size: 12pt;
        line-height: 1.3;
    }

    /* --- Print-Only Title --- */
    .print-only-title {
        display: block !important;
        font-size: 18pt;
        font-weight: bold;
        text-align: center;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #000;
    }

    /* --- Hide Unnecessary Elements --- */
    .app-header,
    .add-section-btn,
    .section-delete-btn,
    .task-input-container,
    .task-checkbox,
    .dark-mode-toggle {
        display: none !important;
    }

    /* --- Layout --- */
    .main-content {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .column {
        flex: 1;
        page-break-inside: avoid; /* Try to keep columns from splitting across pages */
    }

    /* --- Section & Task Styling --- */
    .section-wrapper {
        border: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 1rem;
        page-break-inside: avoid;
        box-shadow: none;
    }

    .section-header h3 {
        font-size: 14pt;
        font-weight: bold;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #000;
        padding-bottom: 0.25rem;
    }

    .section-delete-btn {
        display: none !important;
    }
    
    .task-list {
        list-style: none;
        padding-left: 0;
    }

    .task-item {
        margin-bottom: 0.25rem;
        padding-left: 1.5rem;
        position: relative;
    }

    /* Custom bullet point for tasks */
    .task-item::before {
        content: "☐"; /* Unchecked box character */
        position: absolute;
        left: 0;
        top: 0;
    }

    .hashtag, .mention {
        font-weight: normal;
        color: #000;
        text-decoration: none;
    }
} 