<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Half Birthday Calculator Styles */
.hbc-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

.hbc-container * {
  box-sizing: border-box;
}

.hbc-header {
  background-color: #f8f8f8;
  padding: 15px 20px;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

.hbc-header h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #333;
}

.hbc-description {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.hbc-body {
  padding: 20px;
}

.hbc-form {
  margin-bottom: 20px;
}

.hbc-input-group {
  margin-bottom: 15px;
}

.hbc-input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.hbc-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
}

.hbc-button {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #000000;
  color: white;
  transition: background-color 0.2s, transform 0.1s;
}

.hbc-button:hover {
  background-color: #333333;
}

.hbc-button:active {
  transform: scale(0.98);
}

.hbc-result {
  display: none;
  background-color: #f9f9f9;
  border-radius: 4px;
  padding: 15px;
  text-align: center;
}

.hbc-result.active {
  display: block;
  animation: fadeIn 0.5s;
}

.hbc-result h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.hbc-result-date {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 5px 0;
}

.hbc-result-day {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

.hbc-days-until {
  font-size: 14px;
  color: #666;
  margin: 10px 0 0 0;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 600px) {
  .hbc-container {
    width: 100%;
    border-radius: 0;
  }

  .hbc-header {
    padding: 12px 15px;
  }

  .hbc-body {
    padding: 15px;
  }

  .hbc-result-date {
    font-size: 20px;
  }
}
</pre></body></html>