/* 
 * Custom CSS for Flask Kubernetes App
 */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
}

.footer {
  margin-top: auto;
}

/* Customize navbar */
.navbar-brand {
  font-weight: bold;
}

/* Add some spacing to containers */
.jumbotron {
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #f8f9fa;
  border-radius: 0.3rem;
}

/* Card customization */
.card {
  margin-bottom: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
  font-weight: 600;
}

/* Custom button styling */
.btn {
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: #4285f4;
  border-color: #4285f4;
}

.btn-primary:hover {
  background-color: #3367d6;
  border-color: #3367d6;
}

/* Alert customization */
.alert {
  border-radius: 0.25rem;
  border: none;
}

/* Health check links */
.health-links a {
  text-decoration: none;
  color: #4285f4;
}

.health-links a:hover {
  text-decoration: underline;
}

/* Profile page styling */
.profile-info dt {
  font-weight: bold;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .jumbotron {
    padding: 1rem;
  }
}
