/*layout.css*/

.page-container {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.top-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

.top-right-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.system-section {
  margin-top: 40px;
}

.updates {
  flex: 1;
  overflow-y: auto;
  max-height: 500px;
  min-height: 0;
}
