*{margin:0;padding:0;box-sizing:border-box}body{font-family:Microsoft YaHei,Arial,sans-serif;background:linear-gradient(135deg,#667eea,#764ba2);min-height:100vh;padding:20px;color:#333}.container{max-width:1200px;margin:0 auto;background:#fffffff2;border-radius:20px;box-shadow:0 20px 40px #0000001a;overflow:hidden}.header{background:linear-gradient(45deg,#667eea,#764ba2);color:#fff;text-align:center;padding:20px}.header h1{font-size:2.5em;margin-bottom:10px;text-shadow:2px 2px 4px rgba(0,0,0,.3)}.header p{font-size:1.2em;opacity:.9}.main-content{display:grid;grid-template-columns:1fr 1fr;gap:20px;padding:20px}.calendar-section{background:#fff;border-radius:15px;padding:20px;box-shadow:0 8px 25px #0000001a}.calendar-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}.calendar-header h2{color:#667eea;font-size:1.5em}.nav-btn{background:#667eea;color:#fff;border:none;border-radius:50%;width:40px;height:40px;cursor:pointer;font-size:1.2em;transition:all .3s ease}.nav-btn:hover{background:#5a67d8;transform:scale(1.1)}.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:5px;margin-bottom:10px}.day-header{text-align:center;font-weight:700;padding:10px 5px;background:#f8f9fa;color:#667eea;border-radius:8px}.day-cell{aspect-ratio:1;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:8px;font-weight:500;transition:all .3s ease;position:relative}.day-cell.current-month{background:#f8f9fa;color:#333}.day-cell.current-month:hover{background:#e9ecef;transform:scale(1.05)}.day-cell.other-month{color:#ccc;background:#f8f9fa}.day-cell.today{background:#667eea!important;color:#fff!important;font-weight:700}.day-cell.selected{background:#764ba2!important;color:#fff!important;transform:scale(1.1)}.day-cell.has-tasks:after{content:"";position:absolute;bottom:3px;right:3px;width:6px;height:6px;background:#ff6b6b;border-radius:50%}.tasks-section{background:#fff;border-radius:15px;padding:20px;box-shadow:0 8px 25px #0000001a}.tasks-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}.tasks-header h2{color:#667eea;font-size:1.5em}.selected-date{color:#764ba2;font-weight:700}.add-task-form{display:flex;gap:10px;margin-bottom:20px}.task-input{flex:1;padding:12px 15px;border:2px solid #e9ecef;border-radius:10px;font-size:1em;transition:border-color .3s ease}.task-input:focus{outline:none;border-color:#667eea}.add-btn{background:#667eea;color:#fff;border:none;border-radius:10px;padding:12px 20px;cursor:pointer;font-size:1em;font-weight:700;transition:all .3s ease}.add-btn:hover{background:#5a67d8;transform:scale(1.05)}.tasks-list{max-height:400px;overflow-y:auto}.task-item{display:flex;align-items:center;justify-content:space-between;padding:15px;margin-bottom:10px;background:#f8f9fa;border-radius:10px;transition:all .3s ease;border-left:4px solid #667eea}.task-item:hover{transform:translate(5px);box-shadow:0 5px 15px #0000001a}.task-item.completed{opacity:.7;border-left-color:#28a745}.task-item.completed .task-text{text-decoration:line-through;color:#6c757d}.task-content{display:flex;align-items:center;flex:1}.task-checkbox{margin-right:15px;width:20px;height:20px;cursor:pointer}.task-text{font-size:1em;color:#333}.task-actions{display:flex;gap:10px}.delete-btn{background:#dc3545;color:#fff;border:none;border-radius:5px;padding:5px 10px;cursor:pointer;font-size:.9em;transition:all .3s ease}.delete-btn:hover{background:#c82333;transform:scale(1.05)}.empty-state{text-align:center;color:#6c757d;font-style:italic;padding:40px 20px}.stats{display:flex;justify-content:space-around;background:#f8f9fa;padding:15px;border-radius:10px;margin-top:20px}.stat-item{text-align:center}.stat-number{font-size:1.5em;font-weight:700;color:#667eea}.stat-label{font-size:.9em;color:#6c757d;margin-top:5px}@media (max-width: 768px){.main-content{grid-template-columns:1fr;gap:15px;padding:15px}.header h1{font-size:2em}.calendar-section,.tasks-section{padding:15px}.day-cell{font-size:.9em}.add-task-form{flex-direction:column}.task-input,.add-btn{width:100%}}@media (max-width: 480px){body{padding:10px}.header{padding:15px}.header h1{font-size:1.8em}.header p{font-size:1em}.main-content{padding:10px;gap:10px}.calendar-header h2,.tasks-header h2{font-size:1.3em}.calendar-grid{gap:3px}.day-cell{font-size:.8em;padding:8px 4px}.nav-btn{width:35px;height:35px;font-size:1em}.task-item{padding:12px;flex-direction:column;align-items:flex-start}.task-content{width:100%;margin-bottom:10px}.task-actions{width:100%;justify-content:flex-end}.stats{flex-direction:column;gap:10px}.stat-item{padding:10px;background:#fff;border-radius:8px}}.tasks-list::-webkit-scrollbar{width:6px}.tasks-list::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.tasks-list::-webkit-scrollbar-thumb{background:#667eea;border-radius:3px}.tasks-list::-webkit-scrollbar-thumb:hover{background:#5a67d8}.loading-indicator{display:inline-flex;align-items:center;gap:5px;color:#007bff;font-size:14px;margin-left:15px;animation:pulse 1.5s infinite}@keyframes pulse{0%,to{opacity:1}50%{opacity:.6}}.error-message{display:flex;align-items:center;gap:10px;background-color:#ffe6e6;border:1px solid #ffcccc;border-radius:8px;padding:10px;margin:10px 0;color:#c00;font-size:14px}.retry-btn{background-color:#ff4757;color:#fff;border:none;border-radius:4px;padding:5px 10px;cursor:pointer;font-size:12px;transition:background-color .3s ease}.retry-btn:hover{background-color:#ff3838}.task-item.loading{opacity:.6;pointer-events:none}.offline-indicator{background-color:#ffa502;color:#fff;padding:8px;text-align:center;font-size:14px;border-radius:4px;margin-bottom:10px}.connection-status{display:flex;align-items:center;gap:5px;font-size:12px;color:#666;margin-top:5px}.connection-status.online{color:#27ae60}.connection-status.offline{color:#e74c3c}
