/*
Theme Name: CanvasDesign
Theme URI: http://wordpress.org/themes/twentythirteen
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/



/* Sidebar Widget Container */
.sidebar-widget {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Sidebar Title */
.sidebar-widget h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #28a745; /* Matches btn-success color */
    color: #333;
    text-transform: uppercase;
}

/* List Styling */
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Adds a scrollbar if the list is too long */
    max-height: 500px; 
    overflow-y: auto;
    padding-right: 10px;
}

/* Individual List Items */
.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

/* Link Styling */
.sidebar-widget ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: #28a745;
    padding-left: 5px; /* Subtle slide effect */
}

/* Styling the (Post Count) */
.sidebar-widget ul li {
    color: #999; /* This targets the text outside the <a> tag like (1) */
}

/* Scrollbar Customization (Optional) */
.sidebar-widget ul::-webkit-scrollbar {
    width: 5px;
}
.sidebar-widget ul::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.categorylisting{padding:30px;background:#fff;border-radius:10px;border:1px solid #cddadc;}

.categorylisting h2{font-size:20px !important;font-weight:500 !important;color:#111;margin-bottom:25px;}
.categorylisting h3{font-size:18px;color:#333;margin-bottom:15px;font-weight:500 !important;}
.categorylisting h4{font-size:16px;color:#333;margin-bottom:15px;font-weight:400;}
.categorylisting ul{list-style:none;margin:15px 0 15px 0;padding:0;}
.categorylisting ul {
  list-style: none; /* Remove default bullets */
  padding: 0;
}

.categorylisting ul li {
  position: relative;
  padding: 0 0 0 30px;
}

.categorylisting ul li::before {
  /* Replace '\eb7e' with the hex code of your chosen icon */
  content: "\eb7e"; 
  font-family: "remixicon";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6; /* Set your preferred icon color */
  font-size: 18px; /* Adjust size as needed */
  font-variant: normal;
}

.breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}