:root {
  --bg: #F9F9F9;
  --green-dark: #2D5A27;
  --green: #4CAF50;
  --green-soft: #E9F4E5;
  --blue: #2C3E50;
  --text: #24313d;
  --muted: #64707b;
  --line: rgba(44, 62, 80, 0.10);
  --card: rgba(255,255,255,0.88);
  --shadow: 0 18px 50px rgba(34, 58, 43, 0.10);
  --shadow-soft: 0 10px 28px rgba(44,62,80,0.08);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(44,62,80,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,62,80,0.035) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(76,175,80,0.07), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(45,90,39,0.08), transparent 25%),
    radial-gradient(circle at 70% 70%, rgba(76,175,80,0.05), transparent 28%);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-repeat: no-repeat;
  background-size: contain;
  filter: blur(0.5px);
}

body::before {
  top: -24px;
  left: -32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%234CAF50' stroke-width='2.3' stroke-linecap='round'><path d='M98 12 C69 38,58 77,70 111 C80 139,76 165,52 188'/><path d='M98 12 C126 41,138 78,126 112 C116 139,121 164,146 186'/><path d='M98 44 C75 61,68 85,76 111'/><path d='M99 46 C121 62,129 88,121 114'/><path d='M82 82 C94 89,104 97,111 109'/><path d='M118 82 C106 89,96 97,89 109'/></g></svg>");
}

body::after {
  bottom: -40px;
  right: -30px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%232D5A27' stroke-width='2.1' stroke-linecap='round'><path d='M98 12 C69 38,58 77,70 111 C80 139,76 165,52 188'/><path d='M98 12 C126 41,138 78,126 112 C116 139,121 164,146 186'/><path d='M98 44 C75 61,68 85,76 111'/><path d='M99 46 C121 62,129 88,121 114'/><path d='M82 82 C94 89,104 97,111 109'/><path d='M118 82 C106 89,96 97,89 109'/></g></svg>");
}

.top-actions {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(44, 62, 80, 0.12);
  box-shadow: 0 12px 28px rgba(44, 62, 80, 0.12);
  color: var(--blue);
  backdrop-filter: blur(10px);
}

.language-switch i {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.language-switch__label {
  font: 600 14px Inter, sans-serif;
  white-space: nowrap;
}

.language-switch select {
  border: 0;
  background: transparent;
  color: var(--text);
  font: 600 14px Inter, sans-serif;
  outline: none;
  cursor: pointer;
  min-width: 110px;
}

.print-btn {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2D5A27, #4CAF50);
  color: #fff;
  font: 600 14px Inter, sans-serif;
  box-shadow: 0 12px 28px rgba(76, 175, 80, 0.28);
  cursor: pointer;
  min-height: 48px;
}

.print-btn:disabled {
  cursor: default;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .top-actions {
    top: 12px;
    right: 12px;
    left: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .language-switch {
    min-width: 0;
    padding: 0 12px;
  }

  .language-switch__label {
    display: none;
  }
}