
/* General body styling */
body {
  font-family: sans-serif;
  color: #333;
  background-color: #f8f9fa;
  padding: 20px;
}

/* Header styling */
h1, h2, h3 {
  color: #343a40;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

/* Paragraph styling */
p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Styling for links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Container styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Custom Bootstrap class overrides */
.navbar {
  background-color: #343a40;
}

.navbar-brand, .navbar-nav .nav-link {
  color: #ffffff !important;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
  color: #d3d3d3 !important;
}

/* Footer styling */
footer {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  color: #6c757d;
  border-top: 1px solid #dee2e6;
}

/* Additional padding for blog content */
.blog-content {
  padding: 20px;
}

/* Subtle Highlight class styling - Light Yellow */
.highlight-yellow {
  background-color: #fff3cd; /* Light yellow background */
  font-weight: 500; /* Slightly bold */
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #ffdb63; /* Slightly darker yellow */
}

/* Subtle Highlight class styling - Light Blue */
.highlight-blue {
  background-color: #e0f2fa; /* Light blue background */
  /* font-weight: 500; Slightly bold */
  padding: 3px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #b2ebf2; /* Slightly darker blue */
}

/* Subtle Highlight class styling - Light Green */
.highlight-green {
  background-color: #d9fdd3; /* Light green background */
  /* font-weight: 500; Slightly bold */
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #b2f2a8; /* Slightly darker green */
}

/* Subtle Highlight class styling - Light Pink */
.highlight-pink {
  background-color: #fde0e0; /* Light pink background */
  /* font-weight: 500; Slightly bold */
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #f8bebe; /* Slightly darker pink */
}

/* Subtle Highlight class styling - Light Purple */
.highlight-purple {
  background-color: #f3e5f5; /* Light purple background */
  /* font-weight: 500; Slightly bold */
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #e1bee7; /* Slightly darker purple */
}

/* Subtle Highlight class styling - Light Grey */
.highlight-grey {
  background-color: #f5f5f5; /* Light grey background */
  /* font-weight: 500; Slightly bold */
  padding: 2px 4px;
  border-radius: 3px;
  border-bottom: 2px solid #e0e0e0; /* Slightly darker grey */
}


/* Image styles */
/* Image container */
.image-container {
  text-align: center; /* Center the image and caption */
  margin-bottom: 20px; /* Add space below each image */
}

/* Image styles */
.image-container img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto; /* Center the image horizontally */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Image caption styles */
.image-container figcaption {
  margin-top: 8px; /* Space between image and caption */
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

/* Date and author section styling */
/* Subtle styling for blog info */
.blog-info {
  font-size: 0.9em;
  color: #999;
  /* text-align: end; */
  margin-top: 10px;
}

.blog-info p {
  margin-bottom: 5px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  body {
    padding: 5px;
  }

  .container {
    padding: 5px;
  }

  .highlight-blue {
    background-color: #e0f2fa; /* Light blue background */
    font-weight: 500;
    padding: 3px 4px;
    border-radius: 3px;
    border-bottom: 2px solid #b2ebf2;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.75em;
  }
  
  h3 {
    font-size: 1.5em;
  }
}