    /* Orange color scheme */
    :root {
        --orange-primary: #ff7700;
        --orange-hover: #e66000;
    }
    
    /* Override Bootstrap primary color with orange */
    .btn-primary, .bg-primary, .badge.bg-primary {
        background-color: var(--orange-primary) !important;
        border-color: var(--orange-primary) !important;
    }
    
    .btn-primary:hover {
        background-color: var(--orange-hover) !important;
        border-color: var(--orange-hover) !important;
    }
    
    .btn-outline-primary {
        color: var(--orange-primary) !important;
        border-color: var(--orange-primary) !important;
    }
    
    .btn-outline-primary:hover {
        background-color: var(--orange-primary) !important;
        color: white !important;
    }
    
    .text-primary {
        color: var(--orange-primary) !important;
    }
    
    /* Ensure sidebar is visible */
    .sidebar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Style for blog cards */
    .blog-card .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .blog-card .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    
    /* Style for recent posts in sidebar */
    .recent-post {
        transition: transform 0.3s ease;
    }
    
    .recent-post:hover {
        transform: translateX(5px);
    }
    
    .recent-post-image img {
        object-fit: cover;
        width: 80px;
        height: 80px;
    }
    
    /* Active category styling */
    .list-group-item.active {
        background-color: var(--orange-primary) !important;
        border-color: var(--orange-primary) !important;
    }
    
    /* Ensure sidebar sticks on large screens */
    @media (min-width: 992px) {
        .sticky-sidebar {
            position: sticky;
            top: 20px;
        }
    }
    
    /* Ensure images in cards have consistent height */
    .blog-card .col-md-4 {
        height: 200px;
        overflow: hidden;
    }
    
    .blog-card .col-md-4 img {
        height: 100%;
        object-fit: cover;
    }
    /* Sidebar Styling */
.sidebar-container {
    padding: 20px;
}

.sidebar-widget {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.search-widget .input-group {
    position: relative;
}

.search-widget .btn-orange {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

.search-widget .btn-orange:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
}

.categories-widget ul {
    margin: 0;
    padding: 0;
}

.categories-widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-widget ul li a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.categories-widget ul li a:hover,
.categories-widget ul li a.active {
    color: var(--orange-primary);
    padding-left: 5px;
}

.recent-post {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.post-content {
    flex-grow: 1;
}

.post-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h4 a:hover {
    color: var(--orange-primary);
}

.post-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
}
    /* Orange badge for date */
    .date-badge {
        background-color: var(--orange-primary);
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        display: inline-block;
    }
    
    /* Force sidebar to be visible */
    #sidebar-container {
        display: block !important;
    }
    
    /* Newer posts styling */
    .newer-posts-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .newer-post-item {
        display: flex;
        margin-bottom: 15px;
    }
    
    .newer-post-image {
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }
    
    .newer-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }
    
    .newer-post-content h6 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .newer-post-content small {
        font-size: 12px;
        color: #6c757d;
    }
