body {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
}

.card {
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-body {
  background-color: #1A1F71;
  color: white;
  padding: 15px;
  position: relative;
  border-radius: 15px;
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-content p {
  margin: 0;
  font-size: 14px;
}

.card-content .dots {
  font-size: 18px;
  cursor: pointer;
}

.card h1 {
  margin: 10px 0;
  font-size: 28px;
  font-weight: bold;
}

.last-week {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}