/* =========== Influencered AI Tools v1.0 Style Fix =========== */
body {
  background: #0d001a; /* dark purple base for contrast */
  margin: 0;
  padding: 0;
}

.iat-wrapper {
  background: linear-gradient(180deg, #120022 0%, #1c003d 100%);
  color: #e0ffe6;
  font-family: 'Poppins', sans-serif;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 600px;
  margin: 100px auto; /* pushes it below the header */
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 255, 128, 0.2);
  position: relative;
  z-index: 10;
}

/* Headings */
.iat-wrapper h2 {
  color: #00ff80;
  margin-bottom: 20px;
  font-size: 1.6em;
  letter-spacing: 1px;
}

/* Form inputs */
.iat-wrapper select,
.iat-wrapper textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,255,128,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
  resize: none;
}

/* Selector + Textarea Styling with Yellow Font */
.iat-wrapper select,
.iat-wrapper textarea {
  width: 100%;
  margin: 10px 0 15px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #ffe600; /* 🟡 bright yellow text */
  font-size: 16px;
  resize: none;
  appearance: none;
}

/* Dropdown caret color (modern browsers) */
.iat-wrapper select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23ffe600' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 35px;
}

/* Dropdown options background + text color */
.iat-wrapper select option {
  background: #1c003d;
  color: #ffe600;
}

/* Placeholder color for textarea */
.iat-wrapper textarea::placeholder {
  color: #aaa;
}

}

/* Generate Button */
#iat-generate {
  background: linear-gradient(90deg, #00ff80, #00c76a);
  color: #000;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0,255,128,0.3);
}

#iat-generate:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,128,0.5);
}

/* Output area */
#iat-output {
  margin-top: 25px;
  white-space: pre-wrap;
  text-align: left;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 20px;
  color: #d6ffd6;
  border: 1px solid rgba(0,255,128,0.2);
  font-size: 15px;
  line-height: 1.6;
}

/* Fix any overlap with headers or nav bars */
.site-header,
header,
nav {
  z-index: 50;
  position: relative;
}

/* ====== Fix for header overlap ====== */
.iat-section {
  position: relative;
  z-index: 2;
  padding-top: 80px; /* <-- adjust this value to push below your header */
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .iat-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 80;
  }
}



