/* Reset some default browser styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Apply a background color */
body {
  background-color: #f7f7f7;
}

/* Set a container for the main content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Header styling */
.header {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.header h1 {
  font-size: 36px;
  margin: 0;
}

.header h2 {
  font-size: 16px;
  margin: 0;
}

/* Navigation menu */
.navbar {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  display: inline;
  margin-right: 20px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Main content section */
.main-content {
  padding: 20px;
}

/* Footer styling */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* Basic button styling */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.button:hover {
  background-color: #0056b3;
}

.fixed-label {
    width: 500px; /* Set the desired width */
    height: 30px; /* Set the desired height */
	
  }

#cookie-notification {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            padding: 10px;
            text-align: center;
        }

#cookie-notification button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
        }

/* Add more specific styles as needed to match the website's design */

/* Apply these styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1024px) {
    /* Adjust styles for your banner image */
    div[style*="background-image"] {
        height: auto;
        padding: 10px 0; /* Add padding to separate content from the edges */
        background-size: cover; /* Adjust background size to cover the div */
    }

    /* Center align the logo and heading */
    img[style*="margin-left:10px;"],
    h1[style*="margin-left:10px;"] {
        margin-left: auto;
        margin-right: auto;
    }
	 p {
    display: flex;
    align-items: center;
	font-size: 10px;
  }
  label {
    width: 100px; /* Adjust the width as needed */
    text-align: left;
    margin-right: 5px;
  }
  select {
    width: 20%; /* Expand input fields to fill available space */
  }
}
