
        body {
            background-color: #cfcece;
             font-family: Arial, sans-serif; }
        .news-box { padding: 15px; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 20px; }
        .footer-links a { text-decoration: none; color: white; margin-right: 15px; }
        .sidebar-news { height: 300px; overflow-y: auto; border: 1px solid #ddd; padding: 10px; }
        /* Apply styles to the container with scrolling */
.scroll-container {
    max-height: 150px; /* Adjust height as needed */
    overflow-y: auto; /* Enables vertical scrolling */
    padding: 10px;
  }
  
  .navbar {
            /* background-color:rgb(183, 35, 35); */
            background-color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
  /* Custom scrollbar */
  .scroll-container::-webkit-scrollbar {
    width: 2px; /* Thin scrollbar */
  }
  
  .scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light grey track */
    border-radius: 10px;
  }
  
  .scroll-container::-webkit-scrollbar-thumb {
    background: #888; /* Dark grey scrollbar */
    border-radius: 10px;
  }
  
  .scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker on hover */
  }
  .blog-name{
    /* color: white; */
    color: black;
    font-weight: bold;
  }
  .social-icons {
            display: flex;
            gap: 10px;
        }
        .social-icons a img {
            width: 35px;
            height: 35px;
            transition: transform 0.2s ease-in-out;
        }
        .social-icons a:hover img {
            transform: scale(1.1);
        }
p{
    text-align: justify;
}