/* Layout */
.chamber-status {
  flex: 1;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid #CCCCCC;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-size: 1.1rem;
  min-height: 320px;
}

/* Chamber Status Header */
.chamber-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.chamber-status-header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Chamber Status Sections */
.chamber-status-section {
  margin-bottom: 1.1rem;
}
.chamber-status-label {
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
}
.chamber-status-value {
  color: #757575;
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: 0;
  margin-bottom: 0.2rem;
}

/* View Full Schedule Button */
.chamber-schedule-button {
  background: #111;
  color: var(--color-white);
  padding: 0.9rem 2rem;
  text-decoration: none;
  margin: 0.8rem 0 0.8rem 0;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  margin-top: auto;
}
.chamber-schedule-button svg {
  vertical-align: text-bottom;
}

/* Mobile */
@media (max-width: 1080px) {
  .chamber-status {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem 1.2rem 2rem;
    border: none;
    border-radius: 0;
    height: auto;
    min-height: auto;
    flex: none;
  }
  .chamber-status-header h2 {
    font-size: 1.3rem;
  }
  .chamber-schedule-button {
    font-size: 1.05rem;
    padding: 0.9rem 0;
  }
} 
