ul:not(.hlinks):not(.categ):not(.footer-links)  {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
}

/* ===== STYLE FOR <li><a>...</a></li> BLOCK ===== */

ul:not(.hlinks):not(.categ):not(.footer-links)  li a::before {
  content: "🔥";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.4rem;
}

ul:not(.hlinks):not(.categ):not(.footer-links)  li a:hover {
  background-color: #fff;
  border-color: #ccc;
  color: #d93025;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-decoration: underline;
}

/* ===== STYLE FOR <li><p><strong>...</strong></p></li> BLOCK ===== */
ul:not(.hlinks):not(.categ):not(.footer-links)  li {
  background-color: #f9f9f9;
  margin: 0 0 15px;
  border: 1px solid #ddd;
  padding: 16px 20px 16px 40px;
  border-radius: 8px;
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a73e8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}


ul:not(.hlinks):not(.categ):not(.footer-links)  li::before {
  content: "🔥";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.4rem;
}

ul:not(.hlinks):not(.categ):not(.footer-links)  li:hover {
  background-color: #fff;
  border-color: #ccc;
  color: #d93025;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

ul:not(.hlinks):not(.categ):not(.footer-links)  li p::before {
  content: "🔥";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.4rem;
}

ul:not(.hlinks):not(.categ):not(.footer-links)  li:hover p {
  /*background-color: #fff;*/
  border-color: #ccc;
  color: #d93025;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);*/
}
a {
    color: #1a73e8;
}

/* ========== OL LISTING CSS ========== */
ol:not(.hlinks):not(.categ):not(.footer-links)  {
  list-style: none;
  counter-reset: custom-counter;
  padding: 0;
  margin: 0;
  max-width: 800px;
}

ol:not(.hlinks):not(.categ):not(.footer-links)  li {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  padding: 20px 24px 20px 60px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1a73e8;
  counter-increment: custom-counter;
}

ol:not(.hlinks):not(.categ):not(.footer-links)  li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 20px;
  top: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #4CAF50;
  background: #e8f5e9;
  border-radius: 4px;
  padding: 4px 8px;
  min-width: 30px;
  text-align: center;
}

ol:not(.hlinks):not(.categ):not(.footer-links)  li:hover {
  background-color: #fff;
  border-color: #ccc;
  color: #d93025;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

ol:not(.hlinks):not(.categ):not(.footer-links)  li strong {
  font-weight: 700;
  color: #222;
  margin-right: 6px;
}


/* ========== UNIVERSAL TABLE BASE ========== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.4rem;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin: 40px 0;
}

/* ========== TABLE HEADER SUPPORT ========== */
thead {
  background: linear-gradient(to right, #4CAF50, #81C784);
  color: #fff;
}

thead th {
  padding: 26px 28px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  border: none;
}

/* ========== TABLE BODY ========== */
tbody tr {
  transition: background 0.3s;
}

tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

tbody tr:hover {
  background: linear-gradient(to right, #e1f5fe, #ffffff);
  cursor: pointer;
}

/* ========== CELLS ========= */
th, td {
  padding: 24px 28px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.4rem;
  color: #333;
  position: relative;
  vertical-align: top;
}

/* ========== ICONS FOR COLUMNS (Optional: Apply only in <tbody>) ========== */
tbody td:first-child::before {
  content: "💸";
  margin-right: 14px;
  font-size: 1.6rem;
  color: #2e7d32;
}

tbody td:nth-child(2)::before {
  content: "🔥";
  margin-right: 14px;
  font-size: 1.6rem;
  color: #d84315;
}

tbody td:last-child::before {
  content: "⏳";
  margin-right: 14px;
  font-size: 1.4rem;
  color: #006064;
}

/* ========== COLUMN TEXT STYLING (Optional Highlighting) ========== */
tbody td:first-child {
  font-weight: 700;
  color: #1a237e;
}

tbody td:nth-child(2) {
  font-weight: 600;
  color: #bf360c;
}

tbody td:last-child {
  font-style: italic;
  font-weight: 500;
  color: #00796b;
}

/* ========== RESPONSIVE SUPPORT ========== */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    border-radius: 10px;
  }

  th, td {
    white-space: nowrap;
  }
}

/* ========== H2,H3,H4,H5,H6 Designs ========== */

.blog-content h2 {
  font-size: 2.6rem; /* was 2rem */
  font-weight: 700;
  color: #2c3e50;
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 6px solid #4CAF50;
  padding-left: 20px;
  line-height: 1.4;
}

.blog-content h3 {
  font-size: 2rem; /* was 1.6rem */
  font-weight: 600;
  color: #1a73e8;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}

.blog-content h3::before {
  content: "💡";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.6rem;
}

/* H4 – Mid-Level Subheadings */
.blog-content h4 {
  font-size: 1.7rem; /* was 1.4rem */
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}

.blog-content h4::before {
  content: "📌";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.3rem;
  color: #4CAF50;
}

/* H5 – Minor Headings */
.blog-content h5 {
  font-size: 1.5rem; /* was 1.2rem */
  font-weight: 600;
  color: #555;
  margin-top: 24px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}

.blog-content h5::before {
  content: "📝";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  color: #1a73e8;
}

/* H6 – Labels or Subtle Notes */
.blog-content h6 {
  font-size: 1.3rem; /* was 1.05rem */
  font-weight: 600;
  color: #777;
  margin-top: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.blog-content p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444;
  /*margin-bottom: 24px;*/
  font-weight: 400;
  letter-spacing: 0.2px;
  word-spacing: 0.5px;
  text-align: justify;
}

/* Optional: emphasize first paragraph */
.blog-content p:first-of-type {
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
}

/* Optional: paragraphs after headings get extra top margin */
.blog-content h2 + p,
.blog-content h3 + p,
.blog-content h4 + p {
  margin-top: 12px;
}

