/* Fix for Star Trek LCARS theme */

/* Ensure proper background colors */
body {
  background-color: var(--secondaryBackgroundColor);
  background-image: linear-gradient(to bottom, var(--secondaryBackgroundColor), var(--primaryBackgroundColor));
}

/* Fix LCARS elements */
.lcars-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing_med);
}

.lcars-pill {
  height: 40px;
  background: var(--accentColor);
  border-radius: 20px;
  margin-right: 15px;
  width: 120px;
}

.lcars-bar {
  height: 10px;
  background: linear-gradient(90deg, var(--highlightColor), var(--accentColor));
  border-radius: 5px;
  margin: var(--spacing_med) 0;
}

.lcars-button {
  background: var(--accentColor);
  color: var(--primaryBackgroundColor);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lcars-button:hover {
  background: var(--highlightColor);
  transform: translateY(-2px);
}

.lcars-panel {
  background: var(--cardBackground);
  border-radius: var(--border-radius-md);
  padding: var(--spacing_med);
  margin-bottom: var(--spacing_med);
  position: relative;
  overflow: hidden;
}

.lcars-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--accentColor);
}

.lcars-panel-content {
  margin-left: 20px;
}

/* Fix warp core animation */
.warp-core {
  width: 10px;
  height: 100px;
  background: var(--warpCore);
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 15px var(--warpCore);
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.6; box-shadow: 0 0 10px var(--warpCore); }
  to { opacity: 1; box-shadow: 0 0 25px var(--warpCore), 0 0 40px var(--warpCore); }
}