.elementor-33838 .elementor-element.elementor-element-a154d2e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-33838 .elementor-element.elementor-element-f8755e3{--display:flex;}.elementor-33838 .elementor-element.elementor-element-c0459d1{--display:flex;}.elementor-33838 .elementor-element.elementor-element-b7ea81a{--display:flex;}/* Start custom CSS for container, class: .elementor-element-f8755e3 *//* ================================
   CUSTOM CSS FOR ELEMENTOR
   Page: Best Stocks to Buy Now 2026
   ================================ */

/* --- Base Typography & Colors --- */
:root {
  --primary-blue: #0066cc;
  --accent-teal: #00a896;
  --dark-navy: #1a2332;
  --light-gray: #f8f9fa;
  --border-gray: #e1e4e8;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --success-green: #28a745;
  --warning-amber: #ffc107;
  --danger-red: #dc3545;
  --white: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0.5em;
  border-bottom: 3px solid var(--primary-blue);
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--dark-navy);
  margin-top: 2em;
  border-left: 4px solid var(--accent-teal);
  padding-left: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: var(--accent-teal);
  text-decoration: underline;
}

strong {
  font-weight: 600;
  color: var(--dark-navy);
}

/* --- Disclaimer Box --- */
.disclaimer {
  background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
  border-left: 5px solid var(--warning-amber);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disclaimer strong {
  color: #856404;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.disclaimer p {
  margin: 0;
  color: #856404;
  line-height: 1.6;
}

/* --- Table of Contents --- */
#toc {
  background: var(--light-gray);
  border: 2px solid var(--border-gray);
  border-radius: 10px;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#toc h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-left: none;
  padding-left: 0;
  color: var(--dark-navy);
}

#toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#toc li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

#toc li:last-child {
  border-bottom: none;
}

#toc a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

#toc a:hover {
  background: var(--white);
  text-decoration: none;
  padding-left: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.15);
}

/* --- Data Table --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.data-table thead {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #2c4563 100%);
  color: var(--white);
}

.data-table th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background 0.3s ease;
}

.data-table th:hover {
  background: rgba(255, 255, 255, 0.1);
}

.data-table th::after {
  content: '⇅';
  position: absolute;
  right: 10px;
  opacity: 0.5;
  font-size: 0.85rem;
}

.data-table th.sort-asc::after {
  content: '↑';
  opacity: 1;
  color: var(--accent-teal);
}

.data-table th.sort-desc::after {
  content: '↓';
  opacity: 1;
  color: var(--accent-teal);
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border-gray);
  transition: background 0.3s ease;
}

.data-table tbody tr:hover {
  background: #f1f8ff;
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table td {
  padding: 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.data-table td:first-child {
  font-weight: 600;
  color: var(--dark-navy);
}

/* Table wrapper for horizontal scroll on mobile */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
}

/* --- FAQ Accordion --- */
.faq {
  margin: 2.5rem 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-q {
  width: 100%;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  background: var(--light-gray);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-family: inherit;
  line-height: 1.4;
}

.faq-q:hover {
  background: #e8eef5;
  color: var(--primary-blue);
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 300;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: var(--white);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding: 1.25rem 1.5rem;
}

.faq-a p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .data-table {
    font-size: 0.85rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.75rem 0.5rem;
  }
  
  #toc {
    padding: 1.5rem;
  }
  
  .faq-q {
    font-size: 1rem;
    padding-right: 2.5rem;
  }
  
  .faq-q::after {
    font-size: 1.5rem;
    right: 1rem;
  }
}

/* --- Reading Progress Bar (for JS) --- */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* --- List Styling --- */
ul, ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--text-dark);
}

ul li::marker {
  color: var(--accent-teal);
}

/* --- Smooth Scroll Behavior --- */
html {
  scroll-behavior: smooth;
}

/* Offset for anchor links (accounts for sticky headers if present) */
:target {
  scroll-margin-top: 100px;
}/* End custom CSS */