body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #DAB1DA;
  line-height: 1.6;
  top: 0 !important;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 16px;
  box-sizing: border-box;
}

.section {
  background: white;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.center {
  text-align: center;
}

.footer {  
padding: 20px;
  text-align: center;  margin-top: 20px;
  font-size: 18px;  border-radius: 12px;
  color: #777;  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  margin-top: 40px;}


/* navigation bar */

.nav {
  background: transparent;
  padding: 8px;
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  color: white;
  text-decoration: none;

  background: #333;

  padding: 8px 8px;
  border-radius: 500px;

  font-size: 0.9rem;
  transition: 0.2s;
}

.nav a:hover {
  background: #444;
}

.nav a.active {
  background: #9bd4fa;
  color: black;
  font-weight: bold;
}

.nav-right {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: 10px;

  flex-shrink: 0;
}

.nav-flag {
  width: 40px;
  height: auto;
  image-rendering: pixelated;
  opacity: 0.9;
  flex-shrink: 0;
}

.flag-link {

  background: transparent !important;

  padding: 0 !important;

  border-radius: 0 !important;

  box-shadow: none !important;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

button {
  margin-top: 8px;
}

button:hover { opacity: 0.9; }
.btn-generate { background: #3498db; color: black; }
.btn-print { background: #5BCEFA; color: black; }
.btn-pdf { background: #F5A9B8; color: black; }
.btn-cddocx { background: #5BCEFA; color: black; }
.btn-docx { background: #F5A9B8; color: black; }
.btn-envlp { background: #5BCEFA; color: black; }

.support-btn {

  position: relative;
  overflow: hidden;

  background: #333;

  animation: supportGlow 4s ease-in-out infinite;

  transition: 0.3s;
}

@keyframes supportGlow {

  0% {
    transform: scale(1);
    background: #333;
    box-shadow: 0 0 0 rgba(255,105,180,0);
  }

  25% {
    background: #444;
  }

  50% {
    transform: scale(1.05);

    background: #ff77c8;

    box-shadow:
      0 0 14px rgba(255,105,180,0.5),
      0 0 24px rgba(120,190,255,0.35);
  }

  75% {
    background: #6bbcff;
  }

  100% {
    transform: scale(1);

    background: #333;

    box-shadow: 0 0 0 rgba(255,105,180,0);
  }

}


.info-icon {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  color: #555;
  cursor: pointer;
}

.info-box {
  display: none;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 12px;
  width: 200px;
  z-index: 1000;
  background: #eef7ff;
  border-left: 4px solid #3498db;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
}


.info-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

/* Desktop hover support */
.info-icon:hover .info-box {
  display: block;
}

/* Active state for mobile */
.info-icon.active .info-box {
  display: block;
}


.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ff9800;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.info-blue-box {
  background: #eef7ff;
  border-left: 4px solid #3498db;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.danger-box {
  background: #ffe5e5;
  border-left: 4px solid #e53935;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.last-reviewed {
  opacity: 0.7;
  font-size: 0.85rem;
  margin-top: 10px;
}

.card {
  background: #f8f8f8;
  padding: 16px;
  border-radius: 10px;
  margin-top: 15px;
  border-left: 5px solid #3498db;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: #444;
}

details {
  margin-top: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  overflow: hidden;
}

details[open] summary {
  border-bottom: 1px solid #ddd;
  background: #9bd4fa;
}

.details-content {
  padding: 14px;
}

summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: bold;
  background: #DAB1DA;
  user-select: none;
}

.subpoint {
  margin-left: 10px;
  border-left: 3px solid #ddd;
  padding-left: 12px;
  margin-top: 10px;
}


h1 { font-size: 1.7rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.05rem; }

p, li {
  font-size: 0.95rem;
}

.translate-overlay {

  position: absolute;

  top: 0;
  left: 0;

  width: 40px;
  height: 40px;

  z-index: 2;

  opacity: 0;
}

#google_translate_element {

  position: absolute;

  opacity: 0;

  pointer-events: none;

  z-index: -9999;
}
.skiptranslate iframe {
  display: none !important;
}
.goog-te-gadget-simple {
  background: transparent !important;
}
.translate-wrapper {

  position: relative;

  width: 40px;
  height: 40px;
  overflow: hidden;
}

.translate-icon {

  width: 40px;
  height: 40px;

  position: absolute;

  top: 0;
  left: 0;

  pointer-events: none;

  z-index: 1;
}

.custom-language {

  position: absolute;

  top: 0;
  left: 0;

  width: 40px;
  height: 40px;
 
 
  opacity: 0;

  cursor: pointer;

  z-index: 2;
}

.ref-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;

}