body {
  font-family: sans-serif;
  background: #f3f4f6;
}

.loginContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#loginForm {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 400px;
  text-align: center;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
}

#loginForm button {
  padding: 12px;
  width: 200px;
  background: #021745;
  border-radius: 5px;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #192f61;
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}

.header button {
  background: #021745;
  color: white;
  width: 70px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  height: 35px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.card h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.card ul {
  list-style-type: none;
  padding: 0;
  overflow-y: auto;
  margin: 0;
}

#graphs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
}

svg{
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  h1 {
    font-size: 25px;
  }
  .header {
    margin: 0;
  }
  .header button {
    width: 55px;
    height: 30px;
    font-size: 12px;
  }
}