body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #9141ac;
  color: white;
  padding: 1em;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

main {
  padding: 1em;
}

#content {
  margin-top: 1em;
  padding: 1em;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
}

footer {
  background-color: #333;
  color: white;
  padding: 1em;
}


.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a,
.pagination span,
.pagination button {
  display: inline-block;
  padding: 8px 8px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 2px;
  border-radius: 4px;
  cursor: pointer;
}

.pagination span {
  background-color: #f0f0f0;
  cursor: default;
  font-weight: bold;
}

.pagination button[disabled],
.pagination button[disabled]:hover {
  background-color: #eee;
  color: #888;
  border: 1px solid #ccc;
  cursor: not-allowed;
}


.pagination a:hover,
.pagination button:hover {
  background-color: #ddd;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #6c757d; /* Gray color for the current page */
}

.breadcrumb a::after,
.breadcrumb span::after {
  content: '  ';
}

.breadcrumb a:last-child::after,
.breadcrumb span:last-child::after {
  content: ''; /* Remove the arrow for the last item */
}

/*
.form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
}*/
.form {
  width: 320px;
  margin: 50px auto;
  padding: 20px;
  /*background-color: #f4f4f4;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

.form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form label {
  display: block;
  margin-bottom: 0.5em;
}

/* Input fields styling */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}


.form input,
.form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.form button {
  display: block;
  width: 100%;
  padding: 0.75em;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 1em;
}

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

/* Password container styling for the input and button */
.password-container {
  display: flex;
  align-items: center;
  /*background-color: #007bff;*?
  /*justify-content: space-between;*/
}

.password-container input[type="password"] {
  flex: 1;
  margin-right: 16px;
}

.password-container button {
  width: 80px;
  padding: 0.75em;
  background-color: #007bff;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1em;
}

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

.toggle-password-btn {
  margin-left: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #007bff;
  font-size: 0.9em;
  padding: 0;
}

.toggle-password-btn:hover {
  text-decoration: underline;
}

/* Submit button styling */
button[type="submit"] {
  width: 100%;
  background-color: #28a745;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #218838;
}

.success-message,
.error-message {
  display: none;
  padding: 1em;
  margin-top: 1em;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
}

