/* lifeOS — composant intégré dans la card météo (notes prioritaires) */

.lifeos-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0 12px;
}

.lifeos-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lifeos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lifeos-more {
  color: #6cf;
  font-size: 14px;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.15s;
}
.lifeos-more:hover { opacity: 1; }

.lifeos-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lifeos-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(108, 207, 255, 0.4);
  border-radius: 4px;
  transition: background 0.15s;
}
.lifeos-item:hover { background: rgba(255, 255, 255, 0.07); }

.lifeos-item-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  opacity: 0.8;
}

.lifeos-cat {
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.5px;
}
.lifeos-cat.todo   { background: #d97706; color: #fff; }
.lifeos-cat.idea   { background: #6366f1; color: #fff; }
.lifeos-cat.memory { background: #64748b; color: #fff; }
.lifeos-cat.ref    { background: #14b8a6; color: #fff; }

.lifeos-priority {
  margin-left: auto;
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
}

.lifeos-summary {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.lifeos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.lifeos-tag {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 8px;
  background: rgba(108, 207, 255, 0.12);
  color: #6cf;
}
.lifeos-tag.manual {
  background: rgba(255, 200, 100, 0.15);
  color: #fc8;
  font-weight: 600;
}

.lifeos-loading,
.lifeos-error,
.lifeos-empty {
  font-size: 12px;
  opacity: 0.6;
  padding: 6px;
  text-align: center;
}
.lifeos-error { color: #f88; opacity: 0.85; }
