<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Notification Logger Page Styles */

body {
  line-height: 1.6;
  font-size: 16px;
}

h2 {
  padding-top: 20px;
}

h3 {
  padding-top: 10px;
}

/* Testimonial Card Styles */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-author {
  color: #9800de;
  font-weight: bold;
  margin-top: 15px;
  font-family: 'Orbitron', sans-serif;
}

.testimonial-location {
  color: #888;
  font-size: 0.9em;
}

.testimonial-quote {
  font-style: italic;
  margin: 15px 0;
  position: relative;
  padding-left: 20px;
  min-height: 100px;
}

.testimonial-quote:before {
  content: '"';
  font-size: 3em;
  color: #9800de;
  position: absolute;
  left: -20px;
  top: -20px;
  opacity: 0.3;
}

/* Section Title Styles */
.section-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(152,0,222,0.5);
  padding: 30px 0 20px 0;
}

.section-header {
  margin: 25px 0;
  color: #fff;
  text-shadow: 0 0 10px rgba(152,0,222,0.5);
}

/* Button Styles */
.btn-color {
  background: #9800de;
  border: none;
  box-shadow: 0 0 15px rgba(152,0,222,0.5);
  transition: all 0.3s ease;
}

.btn-color:hover {
  background: #7a00b3;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(152,0,222,0.7);
}

/* FAQ Section Styles */
.faq-section {
  background: rgba(5, 5, 5, 0.5);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
}

.faq-question {
  color: #eeeeee;
  margin: 20px 0 10px;
  font-family: 'Roboto Slab', serif;
}

.faq-answer {
  margin-left: 20px;
}

/* Store Badge Container */
.store-badge-container {
  margin: 40px 0;
}

/* Carousel Styles */
.testimonials-carousel {
  padding: 0 0;
}

.testimonials-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  margin-top: 0;
}

.testimonials-carousel .owl-prev,
.testimonials-carousel .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(152,0,222,0.8) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 20px !important;
  line-height: 40px !important;
  text-align: center !important;
  transition: all 0.3s ease;
}

.testimonials-carousel .owl-prev:hover,
.testimonials-carousel .owl-next:hover {
  background: #9800de !important;
  transform: scale(1.1);
}

.testimonials-carousel .owl-prev {
  left: -20px;
}

.testimonials-carousel .owl-next {
  right: -20px;
}

.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonials-carousel .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5) !important;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.testimonials-carousel .owl-dot.active {
  background: #9800de !important;
  transform: scale(1.2);
}

/* Custom dots styling */
.custom-dots {
  text-align: center;
  margin-top: 0;
}

.custom-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-dot.active {
  background: #9800de;
  transform: scale(1.2);
}

.custom-dot:hover {
  background: rgba(152,0,222,0.7);
} </pre></body></html>