html, body {
    margin: 0;
    padding: 0;
    background: #FCF6EB;
  }

body {
    font-family: 'Nunito', 'Helvetica', sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    background: #FCF6EB;
    border: 1px solid #125B49;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
  }

widget-block,
widget-column,
home-overview-widget,
device-controller-widget,
ad-widget,
weather-widget {
  background: #FCF6EB;
  border: 1px solid #125B49;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: block;
  margin-bottom: 16px;
}
