@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Space+Grotesk:wght@400;500&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #0b071e;
  color: #f1ecf6;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.dashboard-container {
  width: 90%;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  color: #dfb2f4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.controls {
  margin-bottom: 30px;
  background: #16113a;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid #443266;
}

.controls input[type="date"] {
  background: #251b4f;
  border: 1px solid #77529e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  margin-left: 10px;
}

.content-card {
  display: flex;
  background-color: #16113a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #32255c;
  min-height: 400px;
}

.border-decor {
  width: 30px;
  background: repeating-linear-gradient(
    45deg,
    #8e61b7,
    #8e61b7 10px,
    #70459b 10px,
    #70459b 20px
  );
  flex-shrink: 0;
}

.inner-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#media-container img, #media-container iframe {
  max-width: 100%;
  max-height: 450px;
  border-radius: 6px;
  border: 3px solid #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

#apod-explanation {
  line-height: 1.6;
  text-align: justify;
  font-size: 0.95rem;
  color: #d1c7dc;
  max-width: 750px;
}