/* Reset default styles and set global font */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4; /* Light gray background */
}

/* Container for dashboard content */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Heading styles */
h1,
h2 {
  color: #8428cf; /* Purple to match signage.css */
}

/* Form input styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
select,
input[type="time"],
input[type="date"] {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Button styles */
button,
.btn {
  background-color: #8428cf; /* Purple to match signage.css */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.btn:hover {
  background-color: #6b20a6; /* Darker purple on hover */
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #8428cf; /* Purple header */
  color: white;
}

/* Error and success message styles */
.error {
  color: red;
  margin: 10px 0;
}

.success {
  color: green;
  margin: 10px 0;
}

/* Navigation styles */
nav {
  margin: 20px 0;
}

nav a {
  margin-right: 10px;
}

/* Footer styles */
footer {
  margin-top: 20px;
  text-align: center;
  color: #666;
}
