/* General Styling */
body {
  background-color: #f8f8f8;
  font-family: 'Poppins', sans-serif;
  color: #2f2f2f;
  margin: 0;
  padding: 0;
}

.text-burgundy {
  color: #800020;
  font-weight: bold;
  font-size: 2.5rem;
}

/* Button Styling */
.btn-primary,
.btn-secondary,
.btn-outline-secondary,
.btn-success {
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

/* Primary Button */
.btn-primary {
  background-color: #002e5d;
  border-color: #002e5d;
  color: white;
}

.btn-primary:hover {
  background-color: #003a73;
}

/* Secondary Button */
.btn-secondary {
  background-color: grey;
  border-color: grey;
  color: white;
}

.btn-secondary:hover {
  background-color: #606060;
}

/* Outline Secondary Button */
.btn-outline-secondary {
  border-color: #cccccc;
  color: #555555;
}

.btn-outline-secondary:hover {
  background-color: #e0e0e0;
  color: black;
}

.btn-outline-secondary[data-selected="true"] {
  background-color: #98fb98;
  color: black;
}

/* Success Button */
.btn-success {
  background-color: #ffd700;
  border-color: #ffd700;
  color: black;
  font-weight: bold;
}

.btn-success:hover {
  background-color: #ffc300;
}

/* Form Styling */
form {
  background-color: #ffffff;
  border: 2px solid #002e5d;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.form-label {
  color: #002e5d;
  font-weight: bold;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #cccccc;
}

/* Button Group Styling */
button[id^="b"] {
  background-color: white;
  color: black;
  border: 1px solid #cccccc;
  border-radius: 8px;
}

/* Container Styling */
.container {
  max-width: 800px;
  margin: auto;
}

/* Navigation Styling */
nav.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

nav.container .btn {
  width: 150px;
  height: 50px;
}
/* General Header Styling */
header {
  background-color: #001f3f; /* Navy Blue */
  color: white; /* White text for contrast */
  padding: 20px 0; /* Add vertical padding */
  text-align: center; /* Center-align content */
}

/* Title Styling (h1) */
header h1 {
  font-family: 'Montserrat', sans-serif; /* Modern, bold font */
  font-weight: 700; /* Extra-bold for emphasis */
  font-size: 3rem; /* Large font size for prominence */
  margin: 0; /* Remove default margin */
}

/* Slogan Styling (p) */
header p {
  font-family: 'Roboto', sans-serif; /* Clean, professional font */
  font-weight: 300; /* Light font weight for contrast */
  font-size: 1.25rem; /* Smaller size than the title */
  margin-top: 10px; /* Add slight spacing below the title */
}
