/* LCARS Base Theme */
body {
  background-color: #000;
  color: #FFE67C;
  font-family: 'Eurostile', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
}

/* Header & Footer */
.lcars-header,
.lcars-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FF9933;
  padding: 10px;
}

.lcars-title,
.lcars-status {
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  text-align: center;
  flex-grow: 1;
}

.lcars-bar-left,
.lcars-bar-right {
  width: 100px;
  height: 20px;
  background-color: #663399;
  border-radius: 10px;
}

/* Main Section */
.lcars-main {
  display: flex;
  flex-direction: row;
  min-height: 80vh;
}

/* Side Buttons Panel */
.lcars-side {
  background-color: #222;
  padding: 20px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 4px solid #FF9933;
}

/* Buttons */
.lcars-button {
  background-color: #9933FF;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.lcars-button:hover {
  background-color: #FFCC00;
  color: #000;
  cursor: pointer;
}

/* Content Section */
.lcars-content {
  padding: 20px;
  flex-grow: 1;
  background-color: #111;
  color: #FFCC66;
}

.lcars-content h2 {
  color: #FFCC00;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .lcars-main {
    flex-direction: column;
  }

  .lcars-side {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 4px solid #FF9933;
  }

  .lcars-button {
    flex: 1;
    margin: 0 5px;
  }
}