/* Make the entire container fill the height of the screen */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  /* Placeholder for body */
}

/* Ensure the Bootstrap container and row also fill the full height */
.container-fluid, .row {
  height: 100%;
}

/* Map column styling */
.map-container {
  height: 100%; /* Full height */
}

/* Remove padding for map column */
.map-column {
  padding: 0; /* Remove padding */
}

/* Ensure map itself takes full height */
#map {
  height: 100%; 
  width: 100%;
}

/* Terminal styling for the right column */
.terminal {
  background-color: #1e1e1e; /* Dark background */
  color: #ffffff; /* White text */
  font-family: 'Courier New', Courier, monospace; /* Monospace font */
  padding: 20px; /* Spacing inside the terminal */
  height: 100%;
  overflow-y: auto; /* Scroll if content exceeds */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5); /* Shadow effect for depth */
}

/* Heading style for terminal */
.terminal h3 {
  font-weight: bold;
  margin-bottom: 15px; /* Spacing below heading */
  border-bottom: 2px solid #ffffff; /* White border under heading */
  padding-bottom: 5px; /* Padding for heading */
  color: #ffffff; /* White text for heading */
}

/* Terminal log styling */
#logs {
  line-height: 1.5; /* Line height for readability */
}

/* Optional - Animate fake deployment logs */
@keyframes blink {
  50% { opacity: 0; }
}

.blink {
  animation: blink 1s step-start infinite;
}

/* Style for individual log entries */
#logs p {
  margin: 0; /* Remove default margin */
  padding: 5px 0; /* Padding for each log entry */
  transition: background-color 0.3s; /* Smooth background transition */
}

/* Highlight log entry on hover */
#logs p:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Light background on hover */
}

/* Navbar logo styling */
.navbar-brand img {
  height: 30px; /* Reduce logo size */
  max-height: 100%;
}

.navbar {
  height: 48px; /* Reduce navbar height */
  background-color: #ff7f24; /* Dark burnt orange */
}

body {
  padding-top: 48px; /* Adjust padding to match smaller navbar */
}

/* Homepage styling for cards */
.home-content {
  height: calc(100vh - 48px); /* Full height minus navbar */
  display: flex;
  justify-content: center;
  align-items: center;
}

.function-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for the cards */
  transition: transform 0.3s;
}

.function-card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.card-title {
  font-weight: bold;
  color: #ff7f24; /* Match the navbar color */
}

#planet-form {
  margin-top: 15px;
}

.btn-primary {
  background-color: #ff7f24;
  border: none;
}

.btn-secondary {
  background-color: #4caf50; /* Olive green */
  border: none;
}
