input, button, textarea {
  font-size: 16px !important;
}
.swipe-arrows {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  gap: 1.2rem;
}
.swipe-arrow {
  padding: 1rem 2.2rem;
  border-radius: 1rem;
  background: #fff3e0;
  color: #fd267d;
  border: 2px solid #fd267d;
  box-shadow: 0 2px 8px rgba(253,38,125,0.10);
  font-size: 1.15rem;
  min-width: 90px;
  min-height: 48px;
  text-align: center;
  user-select: none;
  touch-action: manipulation;
}
.start-btn {
  display: block;
  margin: 32px auto 0 auto;
  padding: 18px 0;
  width: 80%;
  font-size: 1.35rem;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
  cursor: pointer;
  transition: background 0.18s;
}
.start-btn:active {
  background: #1565c0;
}
.swipe-arrow.active {
  background: #e0e0e0;
  color: #1976d2;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
/* Celebration animation styles */
.celebration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.confetti {
  font-size: 2.2rem;
  animation: confettiFade 1.8s ease-in-out;
  transition: opacity 0.6s;
}
.celebrate-text {
  font-size: 1.1rem;
  color: #2e7d32;
  margin-top: 10px;
  font-weight: 600;
}
@keyframes confettiFade {
  0% { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  20% { opacity: 1; transform: scale(1.1) rotate(8deg); }
  60% { opacity: 1; transform: scale(1) rotate(-6deg); }
  100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
}
.swipe-arrows {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.swipe-arrow {
  padding: 0.5rem 1.2rem;
  border-radius: 1rem;
  background: #fff3e0;
  color: #fd267d;
  border: 2px solid #fd267d;
  box-shadow: 0 2px 8px rgba(253,38,125,0.10);
}
.swipe-arrow-left {
  background: #ffeaea;
  color: #f44336;
  border: 2px solid #f44336;
}
.swipe-arrow-right {
  background: #eaffea;
  color: #4caf50;
  border: 2px solid #4caf50;
}
.mood-btn-group {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.mood-btn {
  background: #fff;
  color: #ff6036;
  border: 2px solid #ff6036;
  border-radius: 1.5rem;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,96,54,0.10);
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
}
.mood-btn.selected, .mood-btn:active {
  background: #ff6036;
  color: #fff;
  border: 2px solid #ff6036;
}
.situation-btn-group {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.situation-btn {
  background: #fff;
  color: #fd267d;
  border: 2px solid #fd267d;
  border-radius: 1.5rem;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(253,38,125,0.10);
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
}
.situation-btn.selected, .situation-btn:active {
  background: #fd267d;
  color: #fff;
  border: 2px solid #fd267d;
}
.selected-prompt {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fd267d;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.back-btn {
  margin-top: 1.5rem;
  background: #fff;
  color: #fd267d;
  border: 2px solid #fd267d;
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(253,38,125,0.10);
  transition: background 0.2s, color 0.2s;
}
.back-btn:hover {
  background: #fd267d;
  color: #fff;
}
.prompt-text {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(253,38,125,0.08);
}
/* Tiny App - Mobile-first styles */

body {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #fd267d 0%, #ff6036 100%);
  margin: 0;
  padding: 0;
  color: #222;
}

.header {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.container {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(253,38,125,0.12);
  margin: 2rem auto;
  padding: 2rem 1.2rem;
  max-width: 400px;
}

.prompt-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(253,38,125,0.18);
  margin: 2rem auto;
  padding: 3rem 1.2rem;
  max-width: 420px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s;
}

.swipe-card {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-shadow: 0 2px 8px rgba(253,38,125,0.08);
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(253,38,125,0.18);
  margin-bottom: 1rem;
  position: relative;
}

.swipe-btns {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.swipe-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.1s;
}
.swipe-btn.accept {
  background: linear-gradient(135deg, #fd267d 0%, #ff6036 100%);
  color: #fff;
  border: 2px solid #fff;
}
.swipe-btn.reject {
  background: #fff;
  color: #fd267d;
  border: 2px solid #fd267d;
}
.swipe-btn:active {
  transform: scale(1.1);
}

.timer {
  font-size: 2rem;
  margin: 1.5rem 0;
  color: #fd267d;
  font-weight: bold;
}

.proof-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.proof-form textarea {
  border-radius: 1rem;
  border: 1px solid #fd267d;
  padding: 1rem;
  font-size: 1rem;
}
.proof-form input[type="file"] {
  border-radius: 1rem;
  border: 1px solid #fd267d;
  padding: 0.5rem;
}
.proof-form button {
  background: linear-gradient(135deg, #fd267d 0%, #ff6036 100%);
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.diary-log {
  margin: 2rem auto;
  max-width: 340px;
}
.log-entry {
  background: #fff3e0;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(253,38,125,0.10);
}
.log-time {
  font-size: 0.9rem;
  color: #fd267d;
  margin-bottom: 0.3rem;
}
.log-prompt {
  font-weight: bold;
  color: #ff6036;
  margin-bottom: 0.3rem;
}
.log-proof {
  color: #222;
  margin-bottom: 0.3rem;
}
.log-file {
  font-size: 0.9rem;
  color: #fd267d;
}

@media (max-width: 600px) {
  .container, .prompt-card, .diary-log {
    max-width: 98vw;
    padding: 1rem;
  }
  .header {
    font-size: 2rem;
  }
  .swipe-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
