@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500');

@font-face {
  font-family: 'Nano';
  src: url('../fonts/nano.ttf') format('truetype');
}

@font-face {
  font-family: 'NanoRegular';
  src: url('../fonts/Nano-Regular.otf') format('opentype');
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
  background-color: #ffd3b6;
  font-family: 'Ubuntu', sans-serif;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  overflow-wrap: break-word;
  color: #222;
}

#root, #__next {
  isolation: isolate;
}

html {
  overflow-x: hidden;
  height: 100vh;
}

section {
  min-height: 80vh;
  padding: 10vh 20vw;
}

footer {
  padding: 10vh 0;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  font-weight: 200;
  font-size: 1vw;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: inherit;
}

.logo {
  padding: 5vh 0;
}

.site-logo {
  font-size: 5vh;
  color: #090f29;
  letter-spacing: 2px;
  text-decoration: none;
}

.who-iam {
  font-family: "Lucida Grande", sans-serif;
  font-weight: lighter;
  font-size: 3vw;
  color: #AA9785;
  letter-spacing: 1px;
}

.who-answer, .typed-cursor {
  color: #090f29;
  font-size: 5vw;
  letter-spacing: 1px;
}

.form-button {
  background-color: inherit;
  padding: 2% 4%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 3vh;
  margin-top: 10vh;
  transition: background-color 0.4s, color 0.4s;
  cursor: pointer;
  color: black;
  border: 4px solid #555;
}

.form-button:hover {
  background-color: #555;
  color: white;
}

.font-nano {
  font-family: 'Nano';
}

.font-nano-regular {
  font-family: 'NanoRegular';
}

/* Flex container for left and right columns */
.container {
  display: flex;
  height: 100vh;
}
/* Left column (1/3rd width) */
.left-column {
  flex: 1;
  max-width: 20%;
  padding: 20px;
  background-color: #f0f0f0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
/* Right column (2/3rd width) */
.right-column {
  flex: 2;
  padding: 20px;
  max-height: 100%;
}

h1, h2 {
  margin: 0 0 10px 0;
}
#createTableDiv {
  margin-bottom: 10px;
  padding: 10px;
}
#tablesTable, #resultTable {
  width: 100%;
  border-collapse: collapse;
}
#tablesTable th, #tablesTable td, #resultTable th, #resultTable td {
  border: 1px solid #ccc;
  padding: 8px;
}
/* Style for query and button */
#queryInput {
  width: calc(100% - 20px);
  margin-bottom: 10px;
  padding: 10px;
  height: auto; /* Adjust height automatically */
  box-sizing: border-box;
  resize: vertical; /* Allows resizing of the textarea vertically */
}
#queryBtn {
  padding: 10px;
  cursor: pointer;
}

.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

