/* List 100 Styles */
.list-100 {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.list-100 h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.list-100 em {
    display: block;
    margin-bottom: 2rem;
    font-style: italic;
    color: #666;
}

.list-100 .content {
    font-family: monospace;
}

.list-100 ol {
    list-style: none;
    counter-reset: list-counter;
    padding: 0;
}

.list-100 li {
    counter-increment: list-counter;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    padding-left: 4rem;
    position: relative;
}

.list-100 li:before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    width: 3rem;
    text-align: right;
    color: #666;
}

.list-100 input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.list-100 input[type="checkbox"]:checked {
    opacity: 1;
}

/* Reading time */
.reading-time {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: monospace;
}

/* Completed items */
.list-100 input[type="checkbox"]:checked + span {
    color: #666;
    text-decoration: line-through;
}

/* Heart emoji */
.heart {
    color: #ff4d4d;
    font-size: 1.2em;
    margin-left: 0.5rem;
}

/* Last paragraph */
.list-100 p:last-child {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1em;
} 