/* Base Styles */
body {
  font-family: 'Syncopate', sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}

/* Header */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.header-menu li {
  margin-left: 1.5rem;
}

.header-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-menu a:hover {
  color: #2cb666;
}

/* Container */
.body-container {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Headings */
h2 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2cb666;
}

.prompt-builder-header {
  margin-bottom: 1rem;
  text-align: center;
}

/* Prompt Blocks */
.prompt-block {
  margin-right: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

textarea {
  width: 100%;
  min-height: 250px;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

/* Buttons */
button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: #2cb666;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

button:hover {
  background-color: #24985f;
}

.clear-button {
  padding: 0.05rem 0.5rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #f44336;
}

/* Delimiter Controls */
.delimit-cbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.delimit-cbs label {
  font-size: 1rem;
}

img {
  height: 100px;
}

/* powerpoint parser block formatting */
.ppt-block {
    font-size: 1.4vw;
}


/* Responsive */
@media screen and (max-width: 700px) {
  .body-container {
    padding: 1rem;
  }
  .right-container {
    margin: 1rem;
    padding: 1rem;
  }
}