/* BASIC SETTINGS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  color: #333;
  display: flex;
  height: 100vh;
  overflow-x: hidden;
  flex-direction: column;
}
h1,
h2,
h3 {
  color: #333;
}

/* LOGIN FORM */
.login {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #eee;
  padding: 0 1rem;
}

.login-logo {
  height: 2rem;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  padding: 2rem;
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}
.login-box {
  width: 100%;
}
.login-box h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}
.login-box h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #000;
}
.login-box h3 {
  text-align: center;
  margin-bottom: 14px;
  color: #f00;
}
.input-group {
  margin-bottom: 15px;
}
.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #000;
  font-weight: bold;
}
.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #fff;
}
.input-group input:focus {
  border-color: #000;
  outline: none;
}
.login-button {
  width: 100%;
  padding: 10px;
  background-color: #76bd23;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}
.login-button:hover {
  background-color: #5e971c;
}

/* CONTAINER FOR SIDEBAR AND CONTENT */
.container {
  display: flex;
  width: 100%;
  height: 100vh;
  display: none;
}

/* SIDEBAR */
.sidebar {
  width: 250px;
  background-color: #333;
  color: #fff;
  padding: 20px;
  overflow-y: auto;
  position: fixed;
  height: 100vh;
}
.sidebar h1 {
  font-size: 1.4em;
  color: #fff;
  text-align: center;
}
.sidebar ul {
  list-style: none;
  margin-top: 20px;
}
.sidebar li {
  margin-bottom: 20px;
}
.sidebar button {
  width: 100%;
  padding: 20px;
  background-color: #76bd23;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}
.sidebar button:hover {
  background-color: #5e971c;
}

/* CONTENT */
.content {
  flex: 1;
  padding: 20px;
  margin-left: 250px;
  background-color: #f4f4f4;
  overflow-y: auto;
}
.content h1 {
  color: #333;
  margin-bottom: 10px;
}
.content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* CHARTS */
.charts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.chart-container {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  padding: 10px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
}

/* TABLES */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.data-table th,
.data-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ccc;
}
.data-table th {
  background-color: #76bd23;
  color: white;
}
.data-table tr:nth-child(even) {
  background-color: #e5e5e5;
}

.data-table tr:nth-child(odd) {
  background-color: #f5f5f5;
}

/* RESPONSIVE SETTINGS */
@media (max-width: 800px) {
  .chart-container {
    flex: 1 1 100%;
  }
}
