

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
.container {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-top: 20px;
}
.flash-messages {
	color: #fff;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 5px;
	background-color: purple; /* Default purple */
}
.flash-messages.success { background-color: #4CAF50; }
.flash-messages.error { background-color: #f44336; }
.flash-messages.warning { background-color: #ff9800; }
.flash-messages.info { background-color: #2196F3; }
.form-group {
	margin-bottom: 15px;
}
label {
	display: block;
	margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}
button {
	background-color: #4CAF50;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
button:hover {
	background-color: #45a049;
}
.links {
	margin-top: 20px;
}
.links a {
	margin-right: 15px;
	color: #0066cc;
	text-decoration: none;
}
.links a:hover {
	text-decoration: underline;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.header-container h1 {
	margin: 0;
}

.logout-button {
	background-color: #f44336;
	color: white;
	padding: 8px 15px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
}

.logout-button:hover {
	background-color: #d32f2f;
	text-decoration: none;
}

.dashboard-content {
	padding: 10px 0;
}





.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}





.accessibility-footer {
    text-align: center;
    font-size: 0.9em;
    color: #6c757d;
    padding: 20px 10px;
    margin-top: 40px;
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

