<style>
  body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
  }

  .layout-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header styles */
  .header {
    background-color: #260540;
    color: white;
    padding: 20px 0;
    width: 100%;
  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .header__logo {
    max-height: 40px;
  }
  
  .header__nav {
    display: flex;
    gap: 20px;
  }
  
  .header__nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

		.show-updates-dropdown {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  /* Footer styles */
  .footer {
    background-color: #260540;
    color: white;
    padding: 40px 0;
    text-align: center;
    width: 100%;
  }
  
  .footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer__link {
    color: white;
    text-decoration: none;
  }
  
  /* Other styles */
  .page-status {
    background-color: #0066CC;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .components-section {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 5px;
  }
  
  .component-container {
    border-bottom: 1px solid #E0E0E0;
    padding: 10px 0;
  }
  
  .component-name {
    font-weight: bold;
    color: #0066CC;
  }

		  .status-day:nth-child(n+32) { display:none; }
  .status-green { color: #00A86B; }
  .status-yellow { color: #FFA500; }
  .status-red { color: #FF0000; }

</style>