/* Styling for the Below Navbar Ad */
.ad-container-below-navbar {
     /* Adding spacing above and below the ad */
    padding: 10px;
    text-align: center;
    align-content: center;
}

/* Responsive behavior for ads */
.adsbygoogle {
    display: block;
    width: 100%; /* Ensure the ad takes up 100% width of the container */
    height: auto; /* Adjust the height automatically based on the ad format */
}

/* Optional: Add background color or shadow for visual appeal */
.ad-container-below-navbar {
    background-color: #f8f8f8;  /* Light background for separation */
    border-radius: 8px;  /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Subtle shadow effect */
}

/* Mobile responsive view */
@media (max-width: 768px) {
    .ad-container-below-navbar {
        margin: 15px 0;
        padding: 5px;
    }
}

/* Desktop-specific adjustments */
@media (min-width: 1024px) {
    .ad-container-below-navbar {
        margin: 30px 0;  /* Larger margins on desktop */
        padding: 20px;  /* More padding for desktop */
    }
}














/* Right Sidebar Styling */
.col-lg-2, .col-md-4, .col-12 {
    padding: 10px;
    
}

/* Styling for the sidebar content */
#right-sidebar-placeholder {
    background-color: #f8f8f8;  /* Light background for sidebar content */
    border-radius: 8px;  /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Subtle shadow effect */
    padding: 15px;
    margin-bottom: 20px;
}

/* AdSense Container Styling */
.adsense-container {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Ensures the ad unit is responsive */
.adsbygoogle {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .col-lg-2 {
        margin-bottom: 15px;  /* Adjust bottom margin on mobile */
    }

    .adsense-container {
        padding: 10px;  /* Reduced padding on mobile */
    }

    #right-sidebar-placeholder {
        padding: 10px;  /* Reduced padding for mobile */
    }
}

/* Desktop-specific adjustments */
@media (min-width: 1024px) {
    .col-lg-2 {
        padding: 20px;  /* More padding on desktop */
    }

    .adsense-container {
        padding: 20px;  /* More padding on desktop */
    }
}



/* Footer Ad Section Styles */
.footer-ad {
    width: 100%;
    text-align: center;
    margin-top: 20px; /* Add space between content and ad */
    padding: 10px 0; /* Add padding around the ad */
    background-color: #f1f1f1; /* Optional background color for the footer area */
}

/* Make sure ad is responsive */
.adsbygoogle {
    display: block;
    margin: 0 auto; /* Center the ad */
    max-width: 100%;
}


.social-share-buttons {
    text-align: center;
    
}

.social-share-buttons a {
    margin: 5px;
    display: inline-block;
}

.social-share-buttons img {
   
    border-radius: 40%;
}

