body {
  font-family: 'Segoe UI', system-ui, Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ===============================
   Section / Box
   =============================== */
.ai-wrap, .pc-wrap, .dp-wrap, .ai-section {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  font-family: system-ui, Arial, sans-serif;
}

/* Headings */

h1 {
  color: #000;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.8rem;
}



h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

h3 {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Paragraphs & small text */
p, .pc-small, .dp-small {
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.pc-small, .dp-small {
  font-size: 0.85rem;
  color: #555;
}

/* Lists */
ul {
  margin: 0 0 10px 20px;
  padding: 0;
  color: #333;
}

li {
  margin-bottom: 6px;
}

 .breadcrumbs {
    font-size: 0.85rem;
    margin: 0.5rem 0;
  }

  .breadcrumbs a {
    text-decoration: none;
    color: #333;
    margin: 0 0.25rem;
  }

  .breadcrumbs a:hover {
    color: #0073e6;
    text-decoration: underline;
  }

  .breadcrumbs span {
    color: #555;
  }

/* ===============================
   Form Rows
   =============================== */
.pc-row, .dp-row, .form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pc-row > div, .dp-row > div, .form-row > div {
  flex: 1 1 300px;
  min-width: 200px;
}

/* Labels & Inputs */
label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  display: block;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* ===============================
   Buttons
   =============================== */
button, .pc-btn, .dp-btn, .ai-copy-btn {
  background: #0b76ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

button:hover, .pc-btn:hover, .dp-btn:hover, .ai-copy-btn:hover {
  background: #095dc4;
}

/* ===============================
   Output Boxes
   =============================== */
.pc-output, .dp-output, .ai-output-example {
  background: #f7f7f7;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  overflow-x: auto;
}

.pc-output-header, .dp-output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pc-copy, .dp-copy {
  background: #000;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.2s;
}

.pc-copy:hover, .dp-copy:hover {
  background: #f0f0f0;
}

/* Preformatted text */
pre {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.95rem;
  margin: 0;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 600px) {
  .pc-row, .dp-row, .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .pc-row > div, .dp-row > div, .form-row > div {
    flex: 1 1 100%;
  }

  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

 ul.category-list {
      list-style: none;
      padding: 0;
      font-family: Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
    }

    ul.category-list li {
      margin-bottom: 8px;
    }

    ul.category-list a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s ease;
    }

    ul.category-list a:hover {
      color: #ff6600;
    }


  .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 30px 0;
    }
    .tool-card {
      background: #ffffff;
      padding: 18px;
      border-radius: 12px;
      text-decoration: none;
      border: 1px solid #e5e5e5;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .tool-card:hover {
      transform: translateY(-6px);
      box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    }
    .tool-card h2 {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .tool-card a {
      text-decoration: none;
      color: #111;
    }
    .tool-card p {
      font-size: 14px;
      color: #555;
    }

	.next-page {
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.next-page:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.prev-page,
.next-page {
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.prev-page:hover,
.next-page:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}
