body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
}
nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
nav a:hover {
  color: #6b4e9b;
}
h1 {
  text-align: center;
  color: #333;
  margin: 20px 0;
}
.day-container {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.day-container h2 {
  color: #6b4e9b; /* Purple to match the share button */
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}
.day-container p {
  margin: 10px 0;
}
.day-container strong {
  color: #4a4a4a;
}
.share-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #6b4e9b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.tracker {
  text-align: center;
  margin: 20px 0;
}
.tracker h2 {
  color: #333;
  margin-bottom: 10px;
}
.calendar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
.calendar div {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  font-size: 14px;
}
.past {
  background-color: #ff4d4d; /* Red for missed days */
  color: white;
}
.viewed {
  background-color: #2196f3; /* Blue for viewed days */
  color: white;
}
.current {
  background-color: #4caf50; /* Green for current day */
  color: white;
}
.future {
  background-color: #ccc; /* Gray for future days */
  color: #666;
}
.contact {
  text-align: center;
  margin-top: 30px;
  color: #333;
}
.content {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.content p {
  margin: 10px 0;
  line-height: 1.6;
}

  #ytFrame::-webkit-scrollbar {
    display: none;
  }
