/* 🔧 Toolbar-style explanation block */
.tool-detail {
  background: #f9fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.2rem 1.2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Header: icon + title */
.tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.toolbar-btn button.tool-icon {
  background: #fff;
  border: 1px solid #8dd7ba;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


/* Tool name + description */
.tool-info h3 {
  font-size: 1.05rem;
  color: #111827;
  margin: 0 0 2px;
}

.tool-info p {
  color: #374151;
  font-size: 0.95rem;
  margin: 0;
  text-indent: 10px;
}

/* Example area */
/* 🎯 Example Box (inside tool detail) */
.tool-example {
  background: #fdfdfd;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #eb8525; /* plavi akcent */
  border-radius: 8px;
  padding: 0.95rem 1.2rem;
  margin-top: 1rem;
  margin-left: 0.3rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1f2937;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease-in-out;
}

.tool-example p {
  text-indent: 10px;
}




.help-page {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.help-page h1 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.help-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #444;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.help-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  background: #f9fafb;
  transition: all 0.25s ease;
}

.help-card:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.help-intro {
  background: #f9fafc;
  border-left: 4px solid #1e3a8a;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0 2rem;
  color: #333;
  line-height: 1.6;
}

.help-intro strong {
  color: #1e3a8a;
}

.help-intro p:first-child {
  font-size: 1.1em;
  margin-bottom: 0.5rem;
}


hr.one {
  border: 0;
  height: 1px;
  width: 70%;
  margin: 2rem auto 1rem auto; /* više prostora ispod */
  background: linear-gradient(
    to right,
    transparent,
    #444,
    /* tamno siva */ transparent
  );
  border-radius: 2px;
}

hr.two {
  border: 0;
  height: 1px;
  width: 70%;
  margin: 1rem auto 2rem auto; /* više prostora iznad */
  background: linear-gradient(
    to right,
    transparent,
    #ff6600,
    /* brend narandžasta (ili probaj drugu boju) */ transparent
  );
  border-radius: 2px;
}

/* ===============================
   ✏️ TEXT BLOCKS
================================== */
.help-section {
  margin: 3rem 0;
  padding: 1rem 0;
  border-top: 2px solid #e5e7eb;
}

.help-section h2 {
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

.help-desc {
  color: #555;
  margin-bottom: 1.5rem;
}

.block-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.block-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.block-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.block-card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.example-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.95em;
  line-height: 1.6;
}

/* 🔸 Highlights */
.highlight-yellow { background: #fff59d; padding: 0 4px; border-radius: 3px; }
.highlight-blue { background: #90caf9; padding: 0 4px; border-radius: 3px; }
.highlight-green { background: #a5d6a7; padding: 0 4px; border-radius: 3px; }
.highlight-red { background: #ef9a9a; padding: 0 4px; border-radius: 3px; }
.highlight-purple { background: #ce93d8; padding: 0 4px; border-radius: 3px; }



.help-tag-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.95rem;
}

.help-tag-table th,
.help-tag-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.help-tag-table th {
  font-weight: 600;
  color: #111;
}

.help-tag-table td:nth-child(2) {
  width: 150px;
}


/* Inline code styling (if not already defined) */
code {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 2px 5px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #c7254e;
}


/* 🧱 Inline code styling */
.help-section code {
  font-family: 'Consolas', 'Courier New', monospace;
  background-color: #f5f6f7;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.95em;
  border: 1px solid #e0e0e0;
}



/* 🎨 Text Color Examples */
.text-red { color: #e53935; }
.text-green { color: #43a047; }
.text-blue { color: #1e88e5; }
.text-purple { color: #8e24aa; }

/* 🎁 Example styling */
.tool-example.colored {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #43a047;
  border-radius: 6px;
  padding: 1rem 1.25rem;
}

.tool-example.colored p {
  margin-bottom: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #e0e0e0;
}




