/* General body styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header styling */
h1 {
  color: #1C77C3;
  margin: 20px;
}

h2 {
  color: #39A9DB;
  margin: 30px;

}

h3{
  color: #1C77C3;
  margin: 30px;

}

p {
  color: #F39237;
  margin:20px;
}


/* Navbar container styling */
.navbar {
  background-color: #1C77C3; /* Darker blue for navbar */
  overflow: hidden;
}

/* Navbar list styling */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* List item styling */
li {
  position: relative; /* Ensure the dropdown can be positioned correctly */
  flex-grow: 1;
  text-align: center;
}

/* Link styling */
li a {
  display: block;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  background-color: #39A9DB; /* Lighter blue background */
}

/* Link hover styling */
li a:hover {
  background-color: #1C77C3; /* Darker blue on hover */
}

/* Navbar active page styling */
li a.active {
  background-color: #F39237; /* Highlight the active page */
}

/* Dropdown container */
li.dropdown:hover .dropdown-content {
  display: block; /* Show the dropdown when hovering over the parent item */
}

/* https://www.w3schools.com/howto/howto_css_contact_form.asp */
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #39A9DB;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #1C77C3;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.prereqs {
  color: #F39237;
}

.prereqs ol {
  list-style-position: outside;
  margin-left: 20px; /* Aligns with body text */
  padding-left: 20px;
}

.prereqs li {
  text-align: left;
  margin-left: 0; /* Ensures numbers stay aligned */
}


#calendar {
  margin: auto;
  max-width: 90%;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #1C77C3;
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}

.accordion{
  margin-top: 20px;
  max-width: 90%;
  padding: 15px;
  border-radius: 8px;

}
/* Ensure images take full width but maintain aspect ratio */
.slider {
  width: 80%;
  margin: auto;
}

.slider img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px;
  display: block;
  margin: auto;
}

/* Ensure Slick arrows are visible */
.slick-prev, .slick-next {
  z-index: 1000;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  border-radius: 50%;
}

.slick-prev:hover, .slick-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#carrie{
  width: 30%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px;
  display: block;
  margin: auto;
}
