* {
  box-sizing: border-box;
}

:root {
  --text: #25352c;
  --muted: #6f7668;
  --line: rgba(34, 54, 43, 0.10);
  --shadow: 0 18px 42px rgba(48, 63, 54, 0.10);
  --green-deep: #174d3c;
  --green-rich: #1f6a52;
  --gold: #c9a646;
  --beige: #f5efe2;
  --cream: #fffdf8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f7f3e8 0%, #f4f1e8 20%, #eef5ef 55%, #f8f5ee 100%);
  color: var(--text);
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.28;
  z-index: -1;
  animation: floaty 14s ease-in-out infinite;
  will-change: transform;
}

.page-bg-1 {
  width: 300px;
  height: 300px;
  background: #d9c16e;
  top: -70px;
  left: -70px;
}

.page-bg-2 {
  width: 360px;
  height: 360px;
  background: #84b29b;
  top: 220px;
  right: -110px;
  animation-delay: -4s;
}

.page-bg-3 {
  width: 280px;
  height: 280px;
  background: #e8d9b8;
  bottom: 30px;
  left: 18%;
  animation-delay: -8s;
}

@keyframes floaty {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(8px); }
  100% { transform: translateY(0) translateX(0); }
}

.container {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
}

.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero .container {
  background: linear-gradient(135deg, #154c3b 0%, #1f6a52 55%, #c9a646 100%);
  color: white;
  padding: 42px 24px;
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(23, 77, 60, 0.22);
  position: relative;
  overflow: hidden;
}

.hero .container::before {
  content: "";
  position: absolute;
  inset: auto -30% -65% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.18);
}

.quran-badge {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, cursive;
  font-size: 1rem;
  line-height: 1.6;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.subtitle {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.12rem;
  opacity: 0.98;
}

.hero-button {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #fffdf8, #f1e8cf);
  color: #214837;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

main {
  padding: 10px 0 48px;
}

.top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255, 252, 246, 0.88);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(233, 224, 199, 0.7);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.step-card:hover,
.mini-card:hover,
.stat-box:hover,
.guide-card:hover,
.log-entry-card:hover,
.checkin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(34, 54, 43, 0.13);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: var(--green-deep);
}

.info-note-card {
  background: linear-gradient(135deg, #f4edd8, #efe5c7);
  border: 1px solid #dfc98a;
}

.info-note-card p {
  margin: 0;
  color: #755c1d;
  font-size: 0.96rem;
}

.info-note-footer {
  text-align: center;
  padding: 8px 12px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.date-text {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--green-deep);
}

.count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 88px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ecf4ef, #f5edd8);
  color: var(--green-deep);
  font-size: 2rem;
  font-weight: 800;
  border: 1px solid #ddd2ae;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

.nickname-input,
.imam-textarea,
.step-note textarea,
.checkin-textarea {
  width: 100%;
  border: 1px solid #d9d2bf;
  background: white;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nickname-input:focus,
.imam-textarea:focus,
.step-note textarea:focus,
.checkin-textarea:focus {
  outline: none;
  border-color: var(--green-rich);
  box-shadow: 0 0 0 4px rgba(31, 106, 82, 0.08);
}

.nickname-input {
  padding: 14px;
  border-radius: 16px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.welcome-text {
  margin-bottom: 0;
  color: var(--green-rich);
  font-size: 1.25rem;
  min-height: 1.8em;
  animation: fadeSlide 0.5s ease;
}

.small-note {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.journey-card {
  background: linear-gradient(135deg, #f4efe2, #edf4ef 45%, #f2ead4);
}

.journey-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--green-rich);
  font-weight: 800;
  border: 1px solid rgba(31, 106, 82, 0.10);
}

.journey-line {
  margin: 0 0 14px;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--green-deep);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.72);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(31, 106, 82, 0.08);
  margin-top: 4px;
}

.progress-bar-large {
  height: 14px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-rich), var(--gold));
  transition: width 0.6s ease;
}

.guide-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}

.guide-option {
  display: block;
  cursor: pointer;
}

.guide-option input {
  display: none;
}

.guide-card {
  border: 2px solid transparent;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  transition: 0.22s ease;
  color: var(--text);
}

.guide-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.guide-card p {
  margin: 0;
  font-size: 0.98rem;
  color: #4f5f53;
}

.guide-card-zaynab {
  background: linear-gradient(135deg, #eef5ef, #f5efe2);
}

.guide-card-mohdali {
  background: linear-gradient(135deg, #e4efe8, #efe4c7);
}

.guide-option input:checked + .guide-card {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 106, 82, 0.12);
}

.guide-avatar,
.character-avatar {
  font-size: 2rem;
  margin-bottom: 10px;
}

.character-single-card {
  text-align: center;
  background: linear-gradient(135deg, #f4efe2, #edf4ef 45%, #f2ead4);
}

.character-single-box {
  border-radius: 24px;
  padding: 10px;
}

.character-single-box h2 {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 1.8rem;
}

.character-single-box p {
  margin: 0;
  color: #4f5f53;
  font-size: 1.08rem;
}

.hadith-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fffdf8, #f3efe3);
  border: 1px solid #e3d8b9;
  text-align: left;
}

.hadith-label {
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
  margin-bottom: 8px !important;
  font-weight: 800;
}

.hadith-text {
  font-size: 1rem !important;
  color: var(--text) !important;
  margin-bottom: 8px !important;
  font-weight: 600;
}

.hadith-source {
  font-size: 0.92rem !important;
  color: var(--muted) !important;
  margin-bottom: 10px !important;
}

.reflection-question {
  font-size: 0.99rem !important;
  color: var(--green-rich) !important;
  font-weight: 700;
}

.how-grid,
.stats-grid {
  display: grid;
  gap: 16px;
}

.how-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.extra-stats .stat-box {
  min-height: 132px;
}

.mini-card,
.stat-box,
.checkin-card {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card-a {
  background: linear-gradient(135deg, #f4efe2, #fbf7ef);
}

.mini-card-b {
  background: linear-gradient(135deg, #edf4ef, #f7f3ea);
}

.mini-card-c {
  background: linear-gradient(135deg, #f5edd8, #fbf8ef);
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.mini-card p {
  margin: 0;
  font-size: 0.97rem;
  color: #4f5f53;
}

.emoji {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 8px;
}

.stat-box-a {
  background: linear-gradient(135deg, #f4efe2, #fbf7ef);
}

.stat-box-b {
  background: linear-gradient(135deg, #ebf3ee, #f7f4eb);
}

.stat-box-c {
  background: linear-gradient(135deg, #efe4c7, #f7f0dc);
}

.stat-box-d {
  background: linear-gradient(135deg, #edf6ef, #eef0d9);
}

.stat-box-e {
  background: linear-gradient(135deg, #f8f2e6, #f5efe2);
}

.stat-box-f {
  background: linear-gradient(135deg, #ebf3ee, #f2ead4);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-deep);
}

.streak-box .stat-value {
  animation: streakPulse 2.8s ease-in-out infinite;
}

@keyframes streakPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.progress-note {
  margin-top: 10px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.steps-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edf4ef, #f3ead2);
  color: var(--green-rich);
  font-weight: 700;
  font-size: 0.9rem;
}

.daily-checkin-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin: 18px 0 20px;
}

.checkin-card {
  background: linear-gradient(135deg, rgba(255,253,248,0.95), rgba(244,239,226,0.95));
}

.checkin-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--green-deep);
}

.checkin-textarea {
  min-height: 110px;
  border-radius: 16px;
  padding: 14px;
  resize: vertical;
  font-size: 0.98rem;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mood-btn {
  border: 1px solid #ddd2ae;
  background: linear-gradient(135deg, #fffdf8, #f5efe2);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  text-align: left;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mood-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(34, 54, 43, 0.08);
}

.mood-btn.active {
  border-color: var(--green-rich);
  background: linear-gradient(135deg, #edf6ef, #f5edd8);
  box-shadow: 0 0 0 4px rgba(31, 106, 82, 0.08);
}

.step-card {
  background: linear-gradient(135deg, rgba(255,253,248,0.95), rgba(244,239,226,0.95));
  border: 1px solid #e6dcc2;
  border-radius: 22px;
  padding: 16px;
  margin-bottom: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.step-card.completed {
  border-color: rgba(31, 106, 82, 0.38);
  background: linear-gradient(135deg, rgba(236, 245, 239, 0.96), rgba(245, 239, 226, 0.96));
}

.step-card.completed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 1.3s ease;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-top input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--green-rich);
  flex-shrink: 0;
}

.step-label {
  font-weight: 700;
  font-size: 1rem;
}

.step-note {
  margin-top: 12px;
}

.step-note textarea {
  min-height: 92px;
  border-radius: 16px;
  padding: 12px;
  resize: vertical;
  font-size: 0.98rem;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

button {
  font: inherit;
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.primary-btn {
  background: linear-gradient(135deg, var(--green-deep), var(--green-rich));
  color: white;
  box-shadow: 0 10px 24px rgba(31, 106, 82, 0.2);
}

.secondary-btn {
  background: linear-gradient(135deg, #ece8dc, #f6f2e8);
  color: #2f3f36;
}

.danger-btn {
  background: linear-gradient(135deg, #f3dfd8, #f8e8e2);
  color: #934b3e;
}

.log-history {
  display: grid;
  gap: 14px;
}

.log-entry-card {
  background: linear-gradient(135deg, #fffdf8, #f7f2e7);
  border: 1px solid #e6dcc2;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.log-entry-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 18px 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.log-entry-main h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--green-deep);
}

.log-entry-meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.log-entry-arrow {
  font-size: 1.2rem;
  color: var(--green-rich);
  transition: transform 0.25s ease;
  margin-top: 2px;
}

.log-entry-card.open .log-entry-arrow {
  transform: rotate(180deg);
}

.log-entry-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.log-entry-card.open .log-entry-body {
  max-height: 1000px;
}

.log-entry-inner {
  padding: 0 18px 18px;
}

.log-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
}

.log-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, #edf4ef, #f5edd8);
  color: var(--green-rich);
  border: 1px solid rgba(31, 106, 82, 0.10);
}

.log-detail-block {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(31, 106, 82, 0.07);
}

.log-detail-title {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 800;
}

.log-list {
  margin: 0;
  padding-left: 18px;
}

.log-list li {
  margin-bottom: 10px;
}

.log-step-title {
  font-weight: 700;
}

.empty-state {
  color: var(--muted);
  margin: 0;
}

.imam-card {
  background: linear-gradient(135deg, #f6f1e5, #eef4ef 40%, #f0e6c7);
}

.imam-quote-box {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,252,246,0.78);
  border: 1px solid #e3d8b9;
  margin-bottom: 16px;
}

.imam-quote {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.imam-source {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.imam-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-deep);
}

.imam-textarea {
  min-height: 120px;
  border-radius: 16px;
  padding: 14px;
  resize: vertical;
  font-size: 0.98rem;
}

.saved-message-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,252,246,0.78);
  border: 1px solid #e3d8b9;
}

.saved-message-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--green-deep);
}

.saved-imam-message {
  margin: 0;
  color: #33463b;
  white-space: pre-wrap;
}

.footer {
  text-align: center;
  padding: 10px 0 40px;
  color: var(--muted);
}

.footer-service {
  margin: 0;
  font-size: 1.15rem;
  color: var(--green-deep);
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-credit a {
  color: var(--green-rich);
  text-decoration: none;
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-dedication {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-container {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: linear-gradient(135deg, var(--green-deep), var(--green-rich));
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(23, 77, 60, 0.22);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 700;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9998;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 18px;
  border-radius: 4px;
  opacity: 0.9;
  animation: confettiFall 1.9s linear forwards;
}

.confetti-piece:nth-child(4n) {
  border-radius: 999px;
  width: 8px;
  height: 8px;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(110vh) rotate(540deg);
    opacity: 0;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 28, 23, 0.45);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-card {
  width: min(100%, 460px);
  background: linear-gradient(135deg, #fffdf8, #f5efe2);
  border: 1px solid rgba(31, 106, 82, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(25, 42, 33, 0.18);
  animation: modalPop 0.22s ease;
}

.modal-card h3 {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 1.35rem;
}

.modal-card p {
  margin: 0;
  color: #4f5f53;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .top-grid,
  .how-grid,
  .stats-grid-4,
  .stats-grid-2,
  .guide-select-grid,
  .daily-checkin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 26px;
  }

  .hero .container {
    padding: 34px 18px;
    border-radius: 24px;
  }

  .card {
    padding: 18px;
    border-radius: 22px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .toast-container {
    width: calc(100% - 24px);
  }

  .toast {
    text-align: center;
    border-radius: 18px;
  }

  .mood-grid {
    grid-template-columns: 1fr;
  }

  .log-entry-header {
    padding: 16px;
  }

  .log-entry-inner {
    padding: 0 16px 16px;
  }
}