{ box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: Arial, sans-serif; background: transparent; }
  .widget { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 1.25rem; max-width: 480px; }
  .header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
  .location { font-size: 13px; color: #555; }
  .time { font-size: 12px; color: #888; margin-top: 2px; }
  .refresh-btn { font-size: 13px; padding: 4px 10px; border: 1px solid #ccc; border-radius: 6px; background: #fff; cursor: pointer; }
  .refresh-btn:hover { background: #f5f5f5; }
  .current { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.25rem; }
  .icon { font-size: 48px; line-height: 1; }
  .temp { font-size: 36px; font-weight: 600; color: #111; }
  .desc { font-size: 14px; color: #555; margin-top: 2px; }
  .wind { font-size: 13px; color: #888; margin-top: 2px; }
  .forecast { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
  .day-card { text-align: center; background: #f7f7f7; border-radius: 8px; padding: 8px 4px; }
  .day-name { font-size: 11px; color: #666; font-weight: 500; }
  .day-icon { font-size: 22px; margin: 4px 0; }
  .day-high { font-size: 12px; font-weight: 600; color: #111; }
  .day-low { font-size: 11px; color: #999; }
  .error { display: none; color: #c00; font-size: 13px; margin-top: 8px; }
  .source { font-size: 11px; color: #aaa; margin-top: 1rem; text-align: right; }