/* 简单美化CSS - 直接粘贴到"页面定制CSS代码" */
#home {
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: #f8f9fa !important;
}

.day {
    background: white !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
    border-left: 5px solid #007bff !important;
}

.postTitle a {
    color: #333 !important;
    font-size: 1.5em !important;
    text-decoration: none !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.postTitle a:hover {
    color: #007bff !important;
    border-bottom: 2px solid #007bff !important;
}

#sidebar {
    background: white !important;
    padding: 15px !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
}