
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0c0e14;
  color: #ffffff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 2em;
  font-weight: bold;
  color: #31d0aa;
  display: flex;
  align-items: center;
}
.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #31d0aa;
}
main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.dashboard-card {
  background-color: #1a1d26;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1, h2 {
  color: #31d0aa;
  margin-bottom: 20px;
}
.api-list {
  list-style-type: none;
  padding: 0;
}
.api-list li {
  background-color: #2c2f3a;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.api-name {
  font-weight: bold;
}
.api-stats {
  display: flex;
  gap: 15px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-value {
  font-size: 1.2em;
  font-weight: bold;
  color: #31d0aa;
}
.chart-container {
  width: 100%;
  height: 300px;
}
.mascot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
}