body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.dashboard {
    width: 90%;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
}

h2, h3 {
    margin-bottom: 1rem;
}

.login-section {
    display: flex;
    justify-content: space-evenly;
    height: 100vh;
    flex-direction: row-reverse;
    align-items: center;

}
.form-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 320px;
  text-align: center;
  
}

.form-container h2 {
  margin-bottom: 1rem;
  color: #333;
}

.form-container input {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container button {
  width: 100%;
  padding: 0.7rem;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-container button:hover {
  background: #0056b3;
}

.msg {
    padding: 0.5rem 1rem;
    background: #d4edda;
    color: #155724;
    border-radius: 4px;
    margin-bottom: 1rem;
}



.form-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.form-inline input {
  flex: 1;
}

.list {
  list-style: none;
  padding: 0;
}

.list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.btn {
  background: #007BFF;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn:hover {
  background: #0056b3;
}

.small {
  color: #777;
  font-size: 0.85rem;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.5rem 0;
}

.menu .btn {
  display: block;
  text-align: center;
  background: #007BFF;
  color: #fff;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.menu .btn:hover {
  background: #0056b3;
}

.btn.disabled {
  background: #ccc;
  cursor: not-allowed;
}

.logout {
  display: inline-block;
  margin-top: 1rem;
  color: #d9534f;
  text-decoration: none;
}

.logout:hover {
  text-decoration: underline;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

canvas {
    margin-bottom: 2rem;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
}