/* Main Content */
.content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  width: 100%;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.dashboard-left, .dashboard-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Mission Input */
.mission-container {
  width: 100%;
  margin-bottom: 1.25rem;
  position: relative;
}

.mission-input {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.mission-input:focus {
  border-color: var(--primary);
}

.mission-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Quote */
.quote-box {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
  padding: 0 1rem;
  opacity: 0.8;
}

/* Info Grid & Message Box */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 1.25rem;
}

.message-box {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.5);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.message-icon {
  color: #818cf8;
  flex-shrink: 0;
}

.message-text {
  color: var(--text-dark);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Weather Widget */
.weather-widget {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  background-color: rgba(15, 23, 42, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.4);
}

.weather-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 120px;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-details {
  display: flex;
  flex-direction: column;
}

.weather-icon.big {
  font-size: 1.75rem;
}

.weather-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}

.weather-temp-main {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
}

.weather-temp-main small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.25rem;
}

.weather-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.weather-sub .dot {
  opacity: 0.5;
}

.weather-divider {
  width: 1px;
  height: 2.5rem;
  background-color: var(--border-color);
  opacity: 0.3;
}
