/* styles.css */
:root {
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --primary: 240 5.9% 10%;
  --primary-foreground: 0 0% 98%;
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --ring: 240 5% 64.9%;
  --radius: 0.5rem;
  --text-color: var(--foreground);
  --background-color: var(--background);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

header {
  background-color: white;
  width: 100%;
  position: fixed;
  top: 0;
  padding-top: 8px;
  z-index: 10;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 20px;
}

.logo {
  width: 130px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px;
}

#exportBtn,
#importBtn {
  margin-right: 10px;
}

textarea {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  width: 80%;
  height: 300px;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
}

input[type="text"] {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
  font-weight: bold;
  width: 80%;
  margin-top: 20px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
}
