/* _content/FineMsg.Web/Components/Blogs/BlogCard.razor.rz.scp.css */
.blog-card[b-gfw8s1qxgf] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover[b-gfw8s1qxgf] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.blog-image[b-gfw8s1qxgf] {
    height: 200px;
    overflow: hidden;
}

.blog-image img[b-gfw8s1qxgf] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img[b-gfw8s1qxgf] {
    transform: scale(1.05);
}

.blog-content[b-gfw8s1qxgf] {
    padding: 1.5rem;
}

.blog-meta[b-gfw8s1qxgf] {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.blog-date[b-gfw8s1qxgf] {
    color: #666;
}

.blog-category[b-gfw8s1qxgf] {
    color: #0d6efd;
    font-weight: 500;
}

.blog-title[b-gfw8s1qxgf] {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-summary[b-gfw8s1qxgf] {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-quote[b-gfw8s1qxgf] {
    position: relative;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-mark[b-gfw8s1qxgf] {
    font-size: 3rem;
    position: absolute;
    color: rgba(0,0,0,0.1);
    top: -1.5rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.quote-mark.closing[b-gfw8s1qxgf] {
    top: auto;
    left: auto;
    right: -0.5rem;
    bottom: -2.5rem;
}

.blog-author[b-gfw8s1qxgf] {
    font-style: italic;
    text-align: right;
    font-weight: 500;
    color: #555;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.blog-tags[b-gfw8s1qxgf] {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag[b-gfw8s1qxgf] {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.blog-link[b-gfw8s1qxgf] {
    margin-top: 1.5rem;
    text-align: right;
}

@media (max-width: 768px) {
    .blog-title[b-gfw8s1qxgf] {
        font-size: 1.2rem;
    }
    
    .blog-content[b-gfw8s1qxgf] {
        padding: 1.25rem;
    }
    
    .quote-mark[b-gfw8s1qxgf] {
        font-size: 2.5rem;
        top: -1.25rem;
        left: -0.25rem;
    }
    
    .quote-mark.closing[b-gfw8s1qxgf] {
        right: -0.25rem;
        bottom: -2rem;
    }
}

/* _content/FineMsg.Web/Components/Blogs/BlogList.razor.rz.scp.css */
.blog-list[b-9b3xpls91o] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loading-container[b-9b3xpls91o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.loading-container p[b-9b3xpls91o] {
    margin-top: 1rem;
    color: #666;
}

.no-blogs[b-9b3xpls91o] {
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    color: #666;
}

/* _content/FineMsg.Web/Components/Blogs/SearchBox.razor.rz.scp.css */
.search-box[b-5rrnrjw1bg] {
    margin-bottom: 2rem;
}

.input-group[b-5rrnrjw1bg] {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.input-group .form-control[b-5rrnrjw1bg] {
    border-right: none;
    padding: 0.75rem 1rem;
}

.input-group .btn[b-5rrnrjw1bg] {
    padding: 0.75rem 1.5rem;
}

.bi-search[b-5rrnrjw1bg] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin-right: 0.25rem;
}

/* _content/FineMsg.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-mupw9v5u0g] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

header[b-mupw9v5u0g] {
    position: sticky;
    top: 0;
    z-index: 1000;
}

main[b-mupw9v5u0g] {
    flex: 1;
    width: 100%;
}

.content[b-mupw9v5u0g] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.app-footer[b-mupw9v5u0g] {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content[b-mupw9v5u0g] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p[b-mupw9v5u0g] {
    margin: 0;
}

.footer-links[b-mupw9v5u0g] {
    display: flex;
    gap: 2rem;
}

.footer-links a[b-mupw9v5u0g] {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover[b-mupw9v5u0g] {
    color: #0d6efd;
}

#blazor-error-ui[b-mupw9v5u0g] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-mupw9v5u0g] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 768px) {
    .content[b-mupw9v5u0g] {
        padding: 1.5rem 1rem;
    }

    .footer-content[b-mupw9v5u0g] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links[b-mupw9v5u0g] {
        gap: 1rem;
    }
}
/* _content/FineMsg.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kfbe2rjtga] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-kfbe2rjtga] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kfbe2rjtga] {
    font-size: 1.1rem;
}

.bi[b-kfbe2rjtga] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill[b-kfbe2rjtga] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-quote[b-kfbe2rjtga] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-quote' viewBox='0 0 16 16'%3E%3Cpath d='M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 9 7.558V11a1 1 0 0 0 1 1h2Zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 3 7.558V11a1 1 0 0 0 1 1h2Z'/%3E%3C/svg%3E");
}

.bi-shuffle[b-kfbe2rjtga] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shuffle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 3.5A.5.5 0 0 1 .5 3H1c2.202 0 3.827 1.24 4.874 2.418.49.552.865 1.102 1.126 1.532.26-.43.636-.98 1.126-1.532C9.173 4.24 10.798 3 13 3v1c-1.798 0-3.173 1.01-4.126 2.082A9.624 9.624 0 0 0 7.556 8a9.624 9.624 0 0 0 1.317 1.918C9.828 10.99 11.204 12 13 12v1c-2.202 0-3.827-1.24-4.874-2.418A10.595 10.595 0 0 1 7 9.05c-.26.43-.636.98-1.126 1.532C4.827 11.76 3.202 13 1 13H.5a.5.5 0 0 1 0-1H1c1.798 0 3.173-1.01 4.126-2.082A9.624 9.624 0 0 0 6.444 8a9.624 9.624 0 0 0-1.317-1.918C4.172 5.01 2.796 4 1 4H.5a.5.5 0 0 1-.5-.5z'/%3E%3Cpath d='M13 5.466V1.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192zm0 9v-3.932a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192z'/%3E%3C/svg%3E");
}

.bi-tag[b-kfbe2rjtga] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-tag' viewBox='0 0 16 16'%3E%3Cpath d='M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm-1 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0z'/%3E%3Cpath d='M2 1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 1 6.586V2a1 1 0 0 1 1-1zm0 5.586 7 7L13.586 9l-7-7H2v4.586z'/%3E%3C/svg%3E");
}

.nav-item[b-kfbe2rjtga] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kfbe2rjtga] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kfbe2rjtga] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kfbe2rjtga]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-kfbe2rjtga]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-kfbe2rjtga]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-kfbe2rjtga] {
        display: none;
    }

    .collapse[b-kfbe2rjtga] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-kfbe2rjtga] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/FineMsg.Web/Components/Layout/TopNav.razor.rz.scp.css */
.top-navbar[b-xrzg8mczj9] {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container[b-xrzg8mczj9] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand .brand-link[b-xrzg8mczj9] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-brand .brand-link:hover[b-xrzg8mczj9] {
    color: #0a58ca;
}

.mobile-toggle[b-xrzg8mczj9] {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger[b-xrzg8mczj9] {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu[b-xrzg8mczj9] {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
    margin-left: 3rem;
}

.nav-links[b-xrzg8mczj9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link[b-xrzg8mczj9] {
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link:hover[b-xrzg8mczj9] {
    background-color: #f0f0f0;
    color: #0d6efd;
    text-decoration: none;
}

.nav-link.active[b-xrzg8mczj9] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.nav-link i[b-xrzg8mczj9] {
    font-size: 1.1rem;
}

.nav-dropdown[b-xrzg8mczj9] {
    position: relative;
}

.dropdown-toggle[b-xrzg8mczj9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bi-chevron-down[b-xrzg8mczj9] {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu[b-xrzg8mczj9] {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown-item[b-xrzg8mczj9] {
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    display: block;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover[b-xrzg8mczj9] {
    background-color: #f0f0f0;
    color: #0d6efd;
    text-decoration: none;
}

.dropdown-item.active[b-xrzg8mczj9] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.nav-search[b-xrzg8mczj9] {
    display: flex;
    align-items: center;
}

.search-box[b-xrzg8mczj9] {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 25px;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

.search-box:focus-within[b-xrzg8mczj9] {
    background-color: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.search-input[b-xrzg8mczj9] {
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    outline: none;
    width: 250px;
    font-size: 0.95rem;
}

.search-btn[b-xrzg8mczj9] {
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover[b-xrzg8mczj9] {
    background-color: #0a58ca;
    transform: scale(1.05);
}

.bi-search[b-xrzg8mczj9] {
    font-size: 1rem;
}

.bi-tags[b-xrzg8mczj9] {
    font-size: 1rem;
}

/* Bootstrap icons that might be missing */
.bi[b-xrzg8mczj9] {
    display: inline-block;
    vertical-align: -0.125em;
}

/* Mobile styles */
@media (max-width: 992px) {
    .mobile-toggle[b-xrzg8mczj9] {
        display: flex;
    }

    .nav-menu[b-xrzg8mczj9] {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.collapsed[b-xrzg8mczj9] {
        display: none;
    }

    .nav-links[b-xrzg8mczj9] {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-link[b-xrzg8mczj9] {
        padding: 1rem 1.5rem;
        border-radius: 0;
        justify-content: flex-start;
    }

    .nav-dropdown[b-xrzg8mczj9] {
        width: 100%;
    }

    .dropdown-menu[b-xrzg8mczj9] {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background-color: #f8f9fa;
        margin: 0;
    }

    .dropdown-item[b-xrzg8mczj9] {
        padding-left: 3rem;
    }

    .nav-search[b-xrzg8mczj9] {
        width: 100%;
        padding: 1rem 1.5rem;
        border-top: 1px solid #e0e0e0;
    }

    .search-box[b-xrzg8mczj9] {
        width: 100%;
        border-radius: 25px;
    }

    .search-input[b-xrzg8mczj9] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .nav-container[b-xrzg8mczj9] {
        padding: 0 1rem;
    }

    .nav-brand .brand-link[b-xrzg8mczj9] {
        font-size: 1.5rem;
    }

    .search-input[b-xrzg8mczj9] {
        width: 200px;
    }
}
/* _content/FineMsg.Web/Components/Pages/BlogDetail.razor.rz.scp.css */
.blog-detail-page[b-fojnccygiq] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-detail-container[b-fojnccygiq] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.blog-main-content[b-fojnccygiq] {
    min-width: 0; /* Prevents grid overflow */
}

.blog-sidebar[b-fojnccygiq] {
    position: sticky;
    top: 2rem;
}

.loading-container[b-fojnccygiq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.loading-container p[b-fojnccygiq] {
    margin-top: 1rem;
    color: #666;
}

.not-found[b-fojnccygiq] {
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.blog-header[b-fojnccygiq] {
    margin-bottom: 2rem;
}

.blog-meta[b-fojnccygiq] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-date[b-fojnccygiq] {
    color: #666;
}

.blog-category a[b-fojnccygiq] {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.blog-category a:hover[b-fojnccygiq] {
    text-decoration: underline;
}

.blog-title[b-fojnccygiq] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.blog-author[b-fojnccygiq] {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.blog-tags[b-fojnccygiq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag[b-fojnccygiq] {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.blog-featured-image[b-fojnccygiq] {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.blog-featured-image img[b-fojnccygiq] {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content[b-fojnccygiq] {
    margin-bottom: 3rem;
}

.blog-quote[b-fojnccygiq] {
    position: relative;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #0d6efd;
}

.quote-mark[b-fojnccygiq] {
    font-size: 4rem;
    position: absolute;
    color: rgba(0,0,0,0.1);
    top: -1rem;
    left: 0.5rem;
    font-family: Georgia, serif;
}

.quote-mark.closing[b-fojnccygiq] {
    top: auto;
    left: auto;
    right: 0.5rem;
    bottom: -2rem;
}

.blog-quote p[b-fojnccygiq] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding-left: 2rem;
}

.content-image[b-fojnccygiq] {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.content-image img[b-fojnccygiq] {
    width: 100%;
    height: auto;
    display: block;
}

.html-content[b-fojnccygiq] {
    margin: 2rem 0;
}

.html-content h2[b-fojnccygiq] {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.html-content p[b-fojnccygiq] {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.html-content ul[b-fojnccygiq] {
    margin-bottom: 1rem;
}

.html-content li[b-fojnccygiq] {
    margin-bottom: 0.5rem;
}

.blog-footer[b-fojnccygiq] {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.share-section[b-fojnccygiq] {
    margin-bottom: 2rem;
}

.share-section h3[b-fojnccygiq] {
    margin-bottom: 1rem;
    color: #333;
}

.share-buttons[b-fojnccygiq] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-twitter[b-fojnccygiq] {
    background-color: #1da1f2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-facebook[b-fojnccygiq] {
    background-color: #4267b2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-linkedin[b-fojnccygiq] {
    background-color: #0077b5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navigation-buttons[b-fojnccygiq] {
    text-align: center;
}

/* Sidebar Styles */
.category-section[b-fojnccygiq],
.related-blogs-section[b-fojnccygiq] {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.category-section h3[b-fojnccygiq],
.related-blogs-section h3[b-fojnccygiq] {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.category-list[b-fojnccygiq] {
    display: flex;
    flex-direction: column;
}

.category-item[b-fojnccygiq] {
    border-radius: 4px;
    overflow: hidden;
    font-size: 0.9rem;
}

.category-item.active[b-fojnccygiq] {
    background-color: #e3f2fd;
}

.category-link[b-fojnccygiq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 1rem;
    background-color: white;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.category-link:hover[b-fojnccygiq] {
    background-color: #f0f0f0;
}

.category-item.active .category-link[b-fojnccygiq] {
    background-color: #e3f2fd;
    color: #0d6efd;
}

.category-name[b-fojnccygiq] {
    font-weight: 500;
}

.category-count[b-fojnccygiq] {
    background-color: #6c757d;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.category-item.active .category-count[b-fojnccygiq] {
    background-color: #0d6efd;
}

.loading-categories[b-fojnccygiq],
.loading-related[b-fojnccygiq] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.related-blogs-list[b-fojnccygiq] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-blog-item[b-fojnccygiq] {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.related-blog-item:last-child[b-fojnccygiq] {
    border-bottom: none;
    padding-bottom: 0;
}

.related-blog-link[b-fojnccygiq] {
    color: #333;
    text-decoration: none;
    display: block;
}

.related-blog-link:hover[b-fojnccygiq] {
    color: #0d6efd;
}

.related-blog-link h4[b-fojnccygiq] {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-blog-summary[b-fojnccygiq] {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.no-related[b-fojnccygiq] {
    color: #666;
    font-style: italic;
    margin: 0;
}

.error-categories[b-fojnccygiq] {
    color: #dc3545;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-container[b-fojnccygiq] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar[b-fojnccygiq] {
        position: static;
        order: -1;
    }
    
    .blog-title[b-fojnccygiq] {
        font-size: 2rem;
    }
    
    .quote-mark[b-fojnccygiq] {
        font-size: 3rem;
        top: -0.75rem;
        left: 0.25rem;
    }
    
    .quote-mark.closing[b-fojnccygiq] {
        right: 0.25rem;
        bottom: -1.5rem;
    }
    
    .blog-quote p[b-fojnccygiq] {
        padding-left: 1.5rem;
    }
    
    .share-buttons[b-fojnccygiq] {
        flex-direction: column;
    }
}
/* _content/FineMsg.Web/Components/Pages/BlogsPage.razor.rz.scp.css */
.blogs-page[b-04ok9vkrco] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-header[b-04ok9vkrco] {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1[b-04ok9vkrco] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-header .lead[b-04ok9vkrco] {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.loading-container[b-04ok9vkrco] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.loading-container p[b-04ok9vkrco] {
    margin-top: 1rem;
    color: #666;
}

.no-blogs[b-04ok9vkrco] {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.blog-grid[b-04ok9vkrco] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card[b-04ok9vkrco] {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover[b-04ok9vkrco] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image[b-04ok9vkrco] {
    height: 200px;
    overflow: hidden;
}

.blog-image img[b-04ok9vkrco] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img[b-04ok9vkrco] {
    transform: scale(1.05);
}

.placeholder-image[b-04ok9vkrco] {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content[b-04ok9vkrco] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta[b-04ok9vkrco] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-date[b-04ok9vkrco] {
    color: #666;
}

.blog-category[b-04ok9vkrco] {
    color: #0d6efd;
    font-weight: 500;
}

.blog-title[b-04ok9vkrco] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-summary[b-04ok9vkrco] {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer[b-04ok9vkrco] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-author[b-04ok9vkrco] {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .blog-grid[b-04ok9vkrco] {
        grid-template-columns: 1fr;
    }
    
    .page-header h1[b-04ok9vkrco] {
        font-size: 2rem;
    }
    
    .page-header .lead[b-04ok9vkrco] {
        font-size: 1.1rem;
    }
}

/* _content/FineMsg.Web/Components/Pages/CategoryPage.razor.rz.scp.css */
.category-page[b-2a8w48zt3e] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.loading-container[b-2a8w48zt3e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.loading-container p[b-2a8w48zt3e] {
    margin-top: 1rem;
    color: #666;
}

.not-found[b-2a8w48zt3e] {
    text-align: center;
    padding: 4rem 0;
}

.not-found h1[b-2a8w48zt3e] {
    margin-bottom: 1rem;
    color: #333;
}

.not-found p[b-2a8w48zt3e] {
    margin-bottom: 2rem;
    color: #666;
}

.category-header[b-2a8w48zt3e] {
    margin-bottom: 2rem;
}

.category-header h1[b-2a8w48zt3e] {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-header h1[b-2a8w48zt3e]:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.category-description[b-2a8w48zt3e] {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
}
/* _content/FineMsg.Web/Components/Pages/Home.razor.rz.scp.css */
.home-container[b-flea52zhfg] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.hero-section[b-flea52zhfg] {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.hero-section h1[b-flea52zhfg] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero-section .lead[b-flea52zhfg] {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.featured-quotes[b-flea52zhfg] {
    margin-bottom: 3rem;
}

.featured-quotes h2[b-flea52zhfg] {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.featured-quotes h2[b-flea52zhfg]:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.categories-section[b-flea52zhfg] {
    margin-bottom: 3rem;
}

.categories-section h2[b-flea52zhfg] {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.categories-section h2[b-flea52zhfg]:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.categories-grid[b-flea52zhfg] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card[b-flea52zhfg] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-card:hover[b-flea52zhfg] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.category-card h3[b-flea52zhfg] {
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.category-card p[b-flea52zhfg] {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section[b-flea52zhfg] {
        padding: 2rem 1rem;
    }
    
    .hero-section h1[b-flea52zhfg] {
        font-size: 2rem;
    }
    
    .hero-section .lead[b-flea52zhfg] {
        font-size: 1.1rem;
    }
}
/* _content/FineMsg.Web/Components/Pages/RandomBlog.razor.rz.scp.css */
.random-blog-page[b-o8q347tyk5] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.loading-container[b-o8q347tyk5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.loading-container p[b-o8q347tyk5] {
    margin-top: 1rem;
    color: #666;
}

.blog-container[b-o8q347tyk5] {
    margin-bottom: 2rem;
}

.action-buttons[b-o8q347tyk5] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.bi-shuffle[b-o8q347tyk5] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shuffle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 3.5A.5.5 0 0 1 .5 3H1c2.202 0 3.827 1.24 4.874 2.418.49.552.865 1.102 1.126 1.532.26-.43.636-.98 1.126-1.532C9.173 4.24 10.798 3 13 3v1c-1.798 0-3.173 1.01-4.126 2.082A9.624 9.624 0 0 0 7.556 8a9.624 9.624 0 0 0 1.317 1.918C9.828 10.99 11.204 12 13 12v1c-2.202 0-3.827-1.24-4.874-2.418A10.595 10.595 0 0 1 7 9.05c-.26.43-.636.98-1.126 1.532C4.827 11.76 3.202 13 1 13H.5a.5.5 0 0 1 0-1H1c1.798 0 3.173-1.01 4.126-2.082A9.624 9.624 0 0 0 6.444 8a9.624 9.624 0 0 0-1.317-1.918C4.172 5.01 2.796 4 1 4H.5a.5.5 0 0 1-.5-.5z'/%3E%3Cpath d='M13 5.466V1.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192zm0 9v-3.932a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384l-2.36 1.966a.25.25 0 0 1-.41-.192z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    .action-buttons[b-o8q347tyk5] {
        flex-direction: column;
    }
}

