body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f9;
	color: #333;
}

.container {
	max-width: 90%;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
	font-size: 1.8rem;
	text-align: center;
	color: #0275d8;
}

p {
	text-align: center;
	font-size: 1rem;
	color: #555;
}

@media (max-width: 1200px) {
.container {
  max-width: 1200px; /* Restrict to 1200px on smaller screens */
}
}

.advert {
margin-top: 20px;
padding: 15px;
border: 1px solid #ddd;
text-align: center;
background-color: #f8f9fa;
}

.error {
color: red;
}
/* Optional: Adjust the grid height */
#gridContainer {
margin-top: 20px;
}
.btn {
padding: 5px 10px;
cursor: pointer;
border: none;
border-radius: 3px;
color: #fff;
}
.btn-sm {
font-size: 12px;
background-color: forestgreen;
}
.btn-danger {
background-color: #d9534f;
}
.btn-primary {
background-color: #0275d8;
}
.btn:hover {
opacity: 0.8;
}

.d-flex {
display: flex;
}

@media (max-width: 767px) {
.d-flex {
  flex-direction: column;
}
}

#privacyNotice {
	border: 1px solid #0275d8;
	padding: 15px;
	border-radius: 5px;
	background-color: #e9f7ff;
	color: #004085;
	margin-bottom: 20px;
}

#privacyNotice button {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #004085;
  cursor: pointer;
  float: right;
}

#statusMessage {
font-size: 1.2rem; /* Larger font size */
font-weight: bold; /* Bold text */
padding: 10px; /* Padding for space around text */
border-radius: 5px; /* Rounded corners */
text-align: center; /* Center the text */
}

label {
  margin: 10px 0;
  padding: 8px;        
  font-weight: 500;
}

input, select {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  background-color: #0275d8;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #025aa5;
}

/* Ensure full-width on small screens */
@media (max-width: 767px) {
  #signInButton, #loadFlowsButton {
	font-size: 1.2rem;
	padding: 12px;
  }

  label {
	text-align: center;
  }

  input, select {
	width: 100% !important;
  }
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(to right, #e6f0fb, #f4f8ff);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-text {
  flex: 1;
  min-width: 250px;
}

.header-text h1 {
  margin: 0;
  color: #0275d8;
  font-size: 2rem;
}

.header-text .tagline {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

.header-logo {
  width: 100px;
  height: auto;
}

#signInButton {
  font-size: 1.1rem;
  padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-divider {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 20px 0;
}