<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles for Memory Jar */

:root {
  --memory-primary: #40cc9f; /* Main green color */
  --memory-secondary: #f8f9fa; /* White */
  --memory-accent: #ff914d; /* Orange accent color */
  --memory-success: #40c057;
  --memory-neutral: #6c757d; /* Neutral gray */
  --memory-danger: #fa5252;
  --memory-light: #f8f9fa;
  --memory-dark: #303030; /* Slightly softer than pure black */
  --memory-bg: #f8f9fa; /* Light background color */
  --memory-text: #303030; /* Dark text color */
  --memory-green: #40cc9f; /* Green accent color */
  --memory-orange: #ff914d; /* Orange accent color */
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.memory-jar-header {
  background-color: var(--memory-primary);
  color: var(--memory-light);
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
}

.navbar-dark .navbar-brand {
  color: white;
  font-weight: bold;
}

.hero-section {
  padding: 0;
  color: var(--memory-dark);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-color: var(--memory-light);
}

/* New split-screen layout */
.hero-left {
  background-color: var(--memory-primary);
  color: white;
  padding: 3rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-right {
  background-color: var(--memory-secondary);
  color: var(--memory-dark);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* For the value proposition text on left side */
.feature-list {
  max-width: 600px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
}

.feature-item i {
  font-size: 2.5rem;
  margin-right: 1.5rem;
  min-width: 50px;
}

.feature-item p {
  margin: 0;
  line-height: 1.3;
}


/* Tab system for login/signup */
.login-tabs {
  margin-bottom: 1.5rem;
}

.login-tabs .nav-link {
  color: #666;
  border-radius: 0;
  padding: 1rem;
}

.login-tabs .nav-link.active {
  font-weight: bold;
  color: var(--memory-primary);
  border-bottom: 3px solid var(--memory-primary);
  background-color: transparent;
}

.features-section {
  padding: 3rem 0;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.memory-card {
  background-color: white;
  color: var(--memory-dark);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.memory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-header {
  background-color: var(--memory-primary);
  color: white;
  border-bottom: none;
}

.card-accent {
  border-top: 3px solid var(--memory-accent);
}

.footer {
  margin-top: auto;
  padding: 1.5rem 0;
  background-color: var(--memory-primary);
  color: white;
}

/* Custom Buttons */
.btn-memory-primary {
  background-color: var(--memory-primary);
  border-color: var(--memory-primary);
  color: white;
}

.btn-memory-primary:hover {
  background-color: #35ad87;
  border-color: #309e7a;
}

.btn-memory-accent {
  background-color: var(--memory-accent);
  border-color: var(--memory-accent);
  color: white;
}

.btn-memory-accent:hover {
  background-color: #e8813f;
  border-color: #d57a3d;
}

.btn-outline-memory {
  border-color: var(--memory-primary);
  color: var(--memory-primary);
}

.btn-outline-memory:hover {
  background-color: var(--memory-primary);
  color: white;
}

/* WhatsApp number display */
.whatsapp-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #25D366;
  padding: 10px;
  border-radius: 10px;
  border: 2px dashed #25D366;
  display: inline-block;
  margin: 1rem 0;
}

/* Settings toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--memory-primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--memory-primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.value-proposition {
  color: var(--memory-light);
}

.value-proposition i {
  color: var(--memory-primary);
}


/* Added styles for improved readability and new button */
.list-group-item {
  background-color: white;
  color: #212529;
  border-color: #dee2e6;
  margin-bottom: 2px;
}

.copy-instructions-button {
  margin-right: 10px; /* Add margin to separate buttons */
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Update form styles */
.form-control {
  background-color: white;
  border: 1px solid #dee2e6;
  color: #333;
}

.form-control:focus {
  background-color: white;
  color: #333;
  border-color: #00C853;
  box-shadow: 0 0 0 0.2rem rgba(0, 200, 83, 0.25);
}

.tab-content {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Card styles */
.settings-card, .memory-card {
  background-color: white;
  color: var(--memory-dark);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.settings-card:hover, .memory-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.settings-header, .memory-header {
  background-color: var(--memory-primary);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.settings-body, .memory-body {
  padding: 1.5rem;
  background: white;
}

.danger-settings-card .settings-header {
  background-color: #dc3545;
}

.btn-save {
  background-color: var(--memory-primary);
  color: white;
  border: none;
}

.btn-save:hover {
  background-color: #35ad87;
  color: white;
}

.btn-delete {
  background-color: #dc3545;
  color: white;
  border: none;
}

.btn-delete:hover {
  background-color: #bb2d3b;
  color: white;
}

.whatsapp-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--memory-primary);
  padding: 10px;
  border-radius: 5px;
  border: 2px dashed var(--memory-primary);
  display: inline-block;
  margin: 1rem 0;
}

/* Memory cards */
.memories-container {
  min-height: 100vh;
  padding: 2rem 0;
  background-color: white;
}

.memory-header {
  background-color: var(--memory-primary);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: white;
  border-radius: 8px 8px 0 0;
}

.memory-body {
  padding: 1.5rem;
  background: white;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.memory-card {
  margin-bottom: 1.5rem;
  border: none;
  transition: transform 0.2s ease;
}

.memory-card:hover {
  transform: translateY(-2px);
}

.create-memory-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.create-memory-card textarea {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.create-memory-card textarea:focus {
  border-color: var(--memory-primary);
  box-shadow: 0 0 0 2px rgba(64, 204, 159, 0.1);
}

.filter-button {
  background-color: white;
  border: 1px solid var(--memory-primary);
  color: var(--memory-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.filter-button:hover {
  background-color: var(--memory-primary);
  color: white;
}

.memory-content {
  color: var(--memory-dark);
  font-size: 1.1rem;
  line-height: 1.6;
}

.memory-type-badge {
  background-color: var(--memory-primary);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-right: 0.5rem;
}

.btn-icon {
  color: white;
  background: transparent;
  border: none;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-icon:hover {
  opacity: 1;
  color: white;
}

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Weekly summaries */
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-text {
  color: var(--memory-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.badge.bg-memory {
  background-color: var(--memory-primary);
  font-weight: normal;
  padding: 0.5em 1em;
  font-size: 0.9rem;
}

.memories-container .memory-card .memory-header {
  background-color: var(--memory-primary);
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.memories-container .memory-card .memory-body {
  padding: 1.5rem;
  background: white;
  border-radius: 0 0 8px 8px;
}

.memories-container .create-memory-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.memories-container h1 {
  color: var(--memory-dark);
  font-size: 2rem;
  font-weight: 600;
}

.bg-memory {
  background-color: var(--memory-primary);
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-left, .hero-right {
    padding: 2rem;
  }

  .hero-left {
    min-height: 50vh;
  }

  .feature-list {
    font-size: 1rem;
  }

  .form-container {
    padding: 1rem;
  }
}</pre></body></html>