* {
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #f0f0f0;
  color: #333;
  padding: 20px;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.login-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.login-box input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  border: 1px solid #ddd;
}

.login-box button {
  padding: 10px 20px;
  background: #c35a3a;
  color: white;
  border: none;
  cursor: pointer;
}

.security-link-wrap {
  margin-top: 12px;
}

.security-link {
  color: #2b4b7f;
  text-decoration: underline;
  font-size: 14px;
}

.security-link:hover {
  color: #1d3459;
}

.header-section {
  margin-bottom: 30px;
}

.header-section h1 {
  font-family: "Fraunces", serif;
  font-size: 36px;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stats-box, .feed-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chart-wrapper {
  height: 300px;
  margin-top: 20px;
}

.stat-item {
  font-size: 20px;
  margin-bottom: 10px;
}

.tip {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.bottom-actions {
  margin-top: 40px;
  text-align: center;
  align-self: center;

}

.reset-btn {
  background: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
}

.reset-btn:hover {
  background: red;
  border-color: red;
}

@media (max-width: 800px) {
  .grid-layout {
    grid-template-columns: 1fr;
  }
}
