#inputBox {
  position: fixed !important;
  z-index: 1000 !important;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 24px;
  min-width: 320px;
  backdrop-filter: blur(10px);
}

#inputBox.hidden {
  display: none;
}

.curved-label,
.inner-label {
  transition: all 0.2s ease;
  transform-origin: center;
}

.curved-label {
  font-size: 14px;
  fill: black;
  font-family: Georgia, serif;
  font-weight: 500;
  pointer-events: all;
}

.curved-label:hover,
.inner-label:hover {
  opacity: 0.8;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.highlighted {
  fill: #FF6B35 !important;
  font-weight: bold;
  filter: drop-shadow(0 2px 4px #6B5B95(255, 107, 53, 0.3));
}

.user-text:hover {
  fill: #FF6B35;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(135deg, #FF6B35, #6B5B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zen-shadow {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

@media print {
  .no-print { display: none !important; }
  .print-container { box-shadow: none !important; }
  
  /* Hide everything except the ikigai diagram when printing */
  body * {
    visibility: hidden;
  }
  
  .print-container, .print-container * {
    visibility: visible;
  }
  
  .print-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 20px !important;
    background: white !important;
  }
  
  /* Ensure the SVG fills the page properly */
  .print-container svg {
    width: 100% !important;
    height: 80vh !important;
    max-width: none !important;
  }
  
  /* Hide the buttons when printing */
  .print-container button {
    display: none !important;
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
