div.text-section h4.font-largest { display: none }
.incidents-list{
display:none;
}
.history-footer-link { display:none; }

/* Minimal StatusPage.io CSS - Non-invasive approach */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Base font and background */
body {
    font-family: 'Montserrat', sans-serif !important;
    background: #F5F5F5 !important;
}

/* Container - match Figma width */
.container {
    max-width: 1065px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Hide incidents */
.unresolved-incidents {
    display: none !important;
}



/* Components container - white background with 8px gap */
.components-container.one-column {
    background: #ffffff !important;
    padding: 20px !important;
    margin: 0 !important;
    border: none !important;
    /* Use gap instead of margin for proper spacing */
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Remove margin from components since gap handles spacing */
.component {
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    margin: 0 !important;
    padding: 20px !important;
    box-shadow: none !important;
}
/* Force remove all component borders */
.component-inner-container {
    background: #F4F7FB !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    box-shadow: none !important;
}


/* Target the specific row structure */
.component .component-inner-container .component-name {
    border-bottom: none !important;
    border-top: none !important;
    }
.component-inner-container > div {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}
/* Remove any table-like borders */
.component * {
    border: none !important;
}

/* Target StatusPage's specific classes */
div[class*="component"] {
    border: none !important;
    border-bottom: none !important;
}

div[class*="component"] > div {
    border: none !important;
    border-bottom: none !important;
}

/* Component names */
.component-name {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #333333 !important;
}

/* About section */
.text-section {
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    box-shadow: none !important;
}

/* Scheduled maintenance */
.scheduled-maintenances-container {
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    box-shadow: none !important;
}

.scheduled-maintenance {
    background: #F4F7FB !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    border: none !important;
}

/* Footer */
.page-footer {
    background: #F5F5F5 !important;
    border-top: 1px solid #E3E3E3 !important;
}
/* Wrapper: replicate Frame layout */
.incident-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 977px;
  height: 24px;
  margin: 0;
  padding: 0;
}

/* Title link */
.incident-title a {
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 4px; 
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #5264D6;
  text-decoration: none;
  display: inline-block;
  width: 349px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Date/time */
.incident-title small {
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 4px; /* or 4px for more space */
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  width: 398px;
  height: 24px;
  flex: none;
  order: 2;
  flex-grow: 0;
  display: inline-block;
}
.incident-title {
  height: auto !important;     /* allow height to grow */
  padding-bottom: 8px;         /* add vertical space */
}
.powered-by {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 20px;
}
/* Force full-width header background */
.masthead-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-width: 100vw !important;
    height: 64px !important;
    background: #FFFFFF !important;
    z-index: 1000 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Also ensure any parent containers don't limit width */
.masthead-container::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100vw !important;
    right: -100vw !important;
    height: 64px !important;
    background: #FFFFFF !important;
    z-index: -1 !important;
}

/* Style the inner masthead to match your content alignment exactly */
.masthead.has-logo {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 64px !important;
    max-width: 1065px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    background: transparent !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Logo container */
.logo-container {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

/* Logo link */
.logo-container a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

/* Logo image */
.logo-container img,
.logo-container a img {
    display: block !important;
    max-width: 112px !important;
    max-height: 29px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Add "Status" text after logo */
.logo-container::after {
    content: "Status" !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    color: #5264D6 !important;
    margin-left: 8px !important;
}

/* Subscribe button container */
.updates-dropdown-container {
    display: flex !important;
    align-items: center !important;
    position: static !important;
    top: auto !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

/* Subscribe button - properly centered single line */
.show-updates-dropdown {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 231px !important;
    height: 34px !important;
    background: #FF3700 !important;
    border-radius: 4px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 34px !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: none !important;
    text-transform: none !important;
    text-align: center !important;
}



/* Add top padding to body */
body {
    padding-top: 94px !important;
    margin: 0 !important;
}

/* Force full width on any limiting parents */
html, body {
    width: 100% !important;
    overflow-x: hidden !important;
}

.text-section h2,
.container h2 {
    font-size: 20px !important;
    line-height: 22px !important;
  padding-bottom: 8px !important;
}

/* 2025-07-29 :: veco :: for dynatacs embed */
body.embedded {
  padding: 0 !important;
}