/* Base Styles */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 40px auto;
    max-width: 900px;
    line-height: 1.6;
    padding: 0 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #1a73e8;
    margin-bottom: 8px;
}

h2 {
    color: #1a73e8;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    margin-top: 40px;
}

/* Focus Section */
#focus {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.focus-priority {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid #1a73e8;
}

/* Daily Checklist */
.daily-checklist h3 {
    margin-top: 0;
    color: #333;
}

.daily-checklist ul {
    list-style: none;
    padding: 0;
}

.daily-checklist li {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.daily-checklist label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.daily-checklist input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #1a73e8;
}

/* Tasks Section */
#tasks {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

#tasks ul {
    padding-left: 20px;
}

#tasks li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Quick Links */
#quick-links {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.links-grid a {
    display: block;
    padding: 14px 18px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
    transition: all 0.2s ease;
}

.links-grid a:hover {
    background-color: #e8f0fe;
    transform: translateY(-1px);
}

/* Note */
.note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}