.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
  }
  
  .pagination a,
  .pagination span {
    padding: 7px 18px;
    border: 1px solid #eee;
    margin-left: -2px;
    margin-right: -2px;
    background-color: #ffffff;
    display: inline-block;
  }
  
  .pagination {
    text-align: center;
  }
  
  table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border: 1px solid #dee2e6;
  }
  thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
  }
  tr {
    display: table-row;
    vertical-align: middle;
    border-color: inherit;
  }
  
  table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-bottom-width: 2px;
  }
  
  tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
  }
  
  table td,
  table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    border: 1px solid #dee2e6;
  }
  
  .blockquote {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  a {
    text-decoration: none;
  }
  
  img {
    padding: 5px;
  }
  
  pre {
    padding: 0;
    color: #1f2933;
    background-color: #f3f3f3;
  }
  
  code {
    padding: 0.2em 0.4em;
    background-color: #f3f3f3;
    color: #dd1144;
    font-weight: 400;
    border-radius: 0.25rem;
  }

  blockquote {
    border-left: 4px solid hsl(217, 71%, 53%);
    padding: 0px 24px;
    /* line-height: 1.6; */
    /* margin: 24px 0; */
    background-color: hsl(217, 71%, 85%);
  }

  blockquote p {
    padding: 1rem;
  }

  .blockquote-success {
    border-left: 4px solid hsl(141, 71%, 48%);
    background-color: hsl(141, 71%, 85%);
  }

  .blockquote-warning {
    border-left: 4px solid hsl(48, 100%, 67%);
    background-color: hsl(48, 100%, 85%);
  }

  .blockquote-danger {
    border-left: 4px solid hsl(348, 100%, 61%);
    background-color: hsl(348, 100%, 85%);
  }

.tech-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    background-color: #f8f9fa;
}

.tech-box i {
  font-size: 70px; /* Increased font size */
  margin-bottom: 15px;
}

.tech-box h5 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.fa-cloud {
  color: #00A1E0; /* Salesforce blue color */
}

.fa-python {
  color: #306998; /* Python blue */
}

.fa-html5 {
  color: #E34F26; /* HTML5 orange */
}

.card {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hover-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-weight: bold;
  margin-bottom: 20px;
}

.card-text {
  font-size: 16px;
  flex-grow: 1;
}

.custom-container-grey {
  background-color: #f7f7f7; /* Light grey background */
  padding: 30px;
  border-radius: 10px;
}

.row > [class*='col-'] {
  margin-bottom: 20px; /* Add bottom margin to ensure spacing between columns on smaller screens */
}

/* Article/Blog Content Styling */
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-content h2 {
  font-size: 2rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.article-content h3 {
  font-size: 1.5rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid #0d6efd;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #6c757d;
}

.article-content code {
  background-color: #f8f9fa;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.article-content pre {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.article-content pre code {
  background-color: transparent;
  padding: 0;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.article-content a {
  color: #0d6efd;
  text-decoration: underline;
}

.article-content a:hover {
  color: #0a58ca;
}

/* Archive and Category list styling */
.archive-list-item:last-child {
  border-bottom: none !important;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bs-body-bg: #1a1a1a;
    --bs-body-color: #e0e0e0;
    --bs-border-color: #555555;
    --bs-secondary-bg: #2d2d2d;
  }

  body {
    background-color: #1a1a1a;
    color: #e0e0e0;
  }

  /* Reduce gaps between sections */
  .container-fluid.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .mt-5 {
    margin-top: 2rem !important;
  }

  /* Header */
  header {
    background-color: #2d2d2d !important;
    border-bottom: 2px solid #555555 !important;
  }

  header .navbar-brand {
    color: #e0e0e0 !important;
  }

  header .navbar-brand:hover {
    color: #e0e0e0 !important;
    opacity: 0.8;
  }

  header .nav-link {
    color: #e0e0e0 !important;
  }

  header .text-muted {
    color: #b0b0b0 !important;
  }

  header .navbar-brand .text-muted:hover {
    color: #b0b0b0 !important;
  }

  /* Footer */
  footer {
    background-color: #2d2d2d !important;
    border-top: 2px solid #555555 !important;
    color: #e0e0e0;
  }

  footer h5 {
    color: #e0e0e0;
  }

  footer a {
    color: #b0b0b0 !important;
  }

  footer a:hover {
    color: #0d6efd !important;
  }

  footer .text-muted {
    color: #b0b0b0 !important;
  }

  /* Background sections */
  .bg-white {
    background-color: #2d2d2d !important;
  }

  .bg-light {
    background-color: #2d2d2d !important;
  }

  /* Cards */
  .card {
    background-color: #2d2d2d;
    border-color: #555555 !important;
    border-width: 1.5px !important;
    color: #e0e0e0;
  }

  .card-body {
    background-color: #2d2d2d;
    color: #e0e0e0;
  }

  .card-title {
    color: #e0e0e0;
  }

  .card-text {
    color: #b0b0b0;
  }

  /* Borders - More visible */
  .border {
    border-color: #555555 !important;
    border-width: 1.5px !important;
  }

  .border-bottom {
    border-bottom-color: #555555 !important;
    border-bottom-width: 1.5px !important;
  }

  .border-top {
    border-top-color: #555555 !important;
    border-top-width: 1.5px !important;
  }

  /* Text colors */
  .text-muted {
    color: #b0b0b0 !important;
  }

  .text-body-emphasis {
    color: #e0e0e0 !important;
  }

  /* Links */
  a {
    color: #5da3ff;
  }

  a:hover {
    color: #7db8ff;
  }

  /* Dropdown menus */
  .dropdown-menu {
    background-color: #2d2d2d;
    border: 1.5px solid #555555;
  }

  .dropdown-item {
    color: #e0e0e0;
  }

  .dropdown-item:hover {
    background-color: #404040;
    color: #e0e0e0;
  }

  /* Tables */
  table {
    color: #e0e0e0;
    border: 1.5px solid #555555;
  }

  table thead th {
    border-bottom: 2px solid #555555;
    background-color: #2d2d2d;
  }

  table td,
  table th {
    border: 1.5px solid #555555;
  }

  /* Code blocks */
  code {
    background-color: #2d2d2d;
    color: #ff6b6b;
    border: 1.5px solid #555555;
  }

  pre {
    background-color: #2d2d2d;
    color: #e0e0e0;
    border: 1.5px solid #555555;
  }

  pre code {
    background-color: transparent;
    border: none;
  }

  /* Blockquotes */
  blockquote {
    border-left-color: #5da3ff;
    background-color: #2d2d2d;
    color: #b0b0b0;
  }

  .blockquote-success {
    border-left-color: #51cf66;
    background-color: #2d2d2d;
  }

  .blockquote-warning {
    border-left-color: #ffd43b;
    background-color: #2d2d2d;
  }

  .blockquote-danger {
    border-left-color: #ff6b6b;
    background-color: #2d2d2d;
  }

  /* Article content */
  .article-content {
    color: #e0e0e0;
  }

  .article-content h2 {
    border-bottom-color: #404040;
    color: #e0e0e0;
  }

  .article-content h1,
  .article-content h3,
  .article-content h4,
  .article-content h5,
  .article-content h6 {
    color: #e0e0e0;
  }

  .article-content a {
    color: #5da3ff;
  }

  .article-content a:hover {
    color: #7db8ff;
  }

  .article-content blockquote {
    border-left-color: #5da3ff;
    background-color: #2d2d2d;
    color: #b0b0b0;
  }

  .article-content code {
    background-color: #1a1a1a;
    color: #ff6b6b;
    border: 1.5px solid #555555;
  }

  .article-content pre {
    background-color: #1a1a1a;
    border: 1.5px solid #555555;
  }

  /* Alerts */
  .alert-info {
    background-color: #1e3a5f;
    border: 1.5px solid #2d5a8a;
    color: #b8d4f0;
  }

  .alert-heading {
    color: #e0e0e0;
  }

  /* Breadcrumbs */
  .breadcrumb {
    background-color: transparent !important;
  }

  .breadcrumb-item a {
    color: #5da3ff;
  }

  .breadcrumb-item.active {
    color: #b0b0b0;
  }

  .breadcrumb-item::before {
    color: #b0b0b0 !important;
    opacity: 1 !important;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    color: #b0b0b0 !important;
    opacity: 1 !important;
  }

  /* Pagination */
  .pagination a,
  .pagination span {
    background-color: #2d2d2d;
    border: 1.5px solid #555555;
    color: #e0e0e0;
  }

  .pagination .webjeda {
    background-color: #0d6efd;
    color: #fff;
  }

  /* Forms */
  .form-control {
    background-color: #2d2d2d;
    border: 1.5px solid #555555;
    color: #e0e0e0;
  }

  .form-control:focus {
    background-color: #2d2d2d;
    border-color: #5da3ff;
    border-width: 2px;
    color: #e0e0e0;
  }

  .form-label {
    color: #e0e0e0;
  }

  .form-select {
    background-color: #2d2d2d;
    border: 1.5px solid #555555;
    color: #e0e0e0;
  }

  .form-select:focus {
    border-color: #5da3ff;
    border-width: 2px;
  }

  /* Archive/Category pages */
  .bg-primary {
    background-color: #0d6efd !important;
  }

  /* Badges in dark mode maintain their colors but adjust text if needed */
  .badge.bg-light {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
  }

  /* Custom grey containers */
  .custom-container-grey {
    background-color: #2d2d2d;
  }

  /* Rounded shadow boxes */
  .rounded.shadow-sm {
    background-color: #2d2d2d;
    border: 1.5px solid #555555 !important;
  }

  /* Shadow boxes with better visibility */
  .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }

  /* Archive/Category page borders */
  .border.rounded {
    background-color: #2d2d2d;
    border-color: #555555 !important;
    border-width: 1.5px !important;
  }

  /* List item borders in archives/categories */
  .archive-list-item.border-bottom {
    border-bottom-color: #555555 !important;
    border-bottom-width: 1.5px !important;
  }

  .border.rounded .bg-white {
    background-color: #2d2d2d !important;
  }

  /* Navbar toggler */
  .navbar-toggler {
    border: 1.5px solid #555555;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28224, 224, 224, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Textarea */
  textarea.form-control {
    background-color: #2d2d2d;
    border: 1.5px solid #555555;
    color: #e0e0e0;
  }

  textarea.form-control:focus {
    background-color: #2d2d2d;
    border-color: #5da3ff;
    border-width: 2px;
    color: #e0e0e0;
  }

  /* Lead text */
  .lead {
    color: #b0b0b0;
  }

  /* Display headings */
  .display-4,
  .display-5 {
    color: #e0e0e0;
  }

  /* Small text */
  small {
    color: #b0b0b0;
  }

  /* Accordion styling - reduce eye strain */
  .accordion-item {
    background-color: #2d2d2d;
    border-color: #555555;
  }

  .accordion-button {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
    border-color: #555555 !important;
  }

  .accordion-button:not(.collapsed) {
    background-color: #2d2d2d !important;
    color: #e0e0e0 !important;
    box-shadow: none !important;
  }

  .accordion-button:focus {
    background-color: #2d2d2d !important;
    border-color: #555555 !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .accordion-button:focus-visible {
    outline: 2px solid #5da3ff !important;
    outline-offset: -2px !important;
    box-shadow: none !important;
  }

  .accordion-body {
    background-color: #2d2d2d;
    color: #e0e0e0;
    border-top: 1px solid #555555;
  }

  /* Better section separation */
  .container-fluid + .container-fluid {
    border-top: 1px solid #555555;
    padding-top: 2rem;
  }

  /* Card spacing adjustments */
  .card.mb-4 {
    margin-bottom: 1.5rem !important;
  }

  /* Better contrast for alternating sections */
  .bg-white,
  .bg-light {
    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
  }

  /* Improve shadow visibility */
  .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
  }

  /* Better visibility for rounded containers */
  .rounded {
    border: 1.5px solid #555555 !important;
  }
}

/* Header enhancements */
header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--bs-primary) !important;
}

/* Footer enhancements */
footer {
  background-color: #f8f9fa;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--bs-primary) !important;
}

/* Button enhancements */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}