@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #e6f2ef;
  font-family: 'Pacifico', cursive;
  font-size: 36px;
}

.toolbar {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

.print-options {
  position: absolute;
  right: 0;
  min-width: 180px;
  margin-top: 5px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toolbar button {
  font-family: Arial, sans-serif;
  padding: 8px 12px;
  cursor: pointer;
}

.print-options {
  margin-top: 5px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.print-options button {
  display: block;
  width: 100%;
  border: none;
  background: white;
}

.hidden { display: none; }

.letter {
  width: 800px;
  min-height: 1145px;
  margin: 60px auto;
  padding: 80px 60px;
  background: #fffdf7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}

.decorated {
  border-top: 42px solid transparent;
  border-bottom: 42px solid transparent;
  border-left: 39px solid transparent;
  border-right: 39px solid transparent;
  background-image:
    linear-gradient(#fffdf7, #fffdf7),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="183" height="48"><text x="0" y="36" font-size="30">🎄 ⭐ 🎁 ❄️ ⭐ 🎄</text></svg>');
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

h1 {
  margin-top: 0;
  font-size: 36px;
}

.writing-area {
  margin-top: 40px;
  outline: none;
}

.writing-area:focus {
  outline: none;
}

.writing-area p {
  min-height: 64px;
  max-height: 64px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px 0;
}

.signature {
  margin-top: 60px;
  text-align: right;
}

@media print {
  html, body {
    margin: 0;
    padding: 0;
    background: white;
  }

  .toolbar {
    display: none;
  }

  .letter {
    margin: 0;
    margin-top: 5px;
    box-shadow: none;
  }
}

body.no-decorations .decorated {
  border: none;
  background: #fffdf7;
  box-shadow: none;
}