﻿        .top-color-bar {
            height: 3px;
            background: linear-gradient(90deg, #28a745, #34ce57);
        }
        .bg-gray {
            background-color: #f5f5f5;
        }
        .white-container {
            background-color: #fff;
            padding: 20px 0;
        }
        .card-img-fixed {
            width: 180px;
            min-width: 180px;
            height: 180px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .card-body-horizontal {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: flex-start;
        }
        .content-text {
            white-space: pre-wrap;
            word-wrap: break-word;
            line-height: 1.8;
            font-size: 14px;
            text-align: left;
            min-width: 0;
            flex: 1;
        }
        .content-text .btn-outline-success-rounded {
            color: #28a745;
            border: 1px solid #28a745;
            background-color: #fff;
            border-radius: 20px !important;
            padding: 1px 10px;
            font-size: 12px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
            line-height: 1.5;
            margin: 0 2px;
        }
        .content-text .btn-outline-success-rounded:hover {
            background-color: #28a745;
            color: #fff;
            text-decoration: none;
        }
        .content-text .btn-outline-success-rounded i {
            font-size: 11px;
        }
        .platform-badge {
            display: inline-block;
            padding: 2px 12px;
            font-size: 13px;
            font-weight: 500;
            color: #28a745;
            background-color: #e8f5e9;
            border: 1px solid #28a745;
            border-radius: 20px !important;
        }
        .card, .card img, .card-body, .card-header {
            border-radius: 0 !important;
        }
        .nav-category {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0;
            margin-bottom: 16px;
            list-style: none;
        }
		.nav-category .dropdown-toggle {
    display: inline-block;
    padding: 6px 18px;
    color: #28a745;
    background-color: #fff;
    border: 1px solid #28a745;
    border-radius: 20px !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
}
.br-none {
    display: block;
    content: "";
    margin: 0;
    padding: 0;
    height: 1px;
    line-height: 1;
}
        .nav-category .nav-item {
            margin: 0;
        }
        .nav-category .nav-link {
            display: inline-block;
            padding: 6px 18px;
            color: #28a745;
            background-color: #fff;
            border: 1px solid #28a745;
            border-radius: 20px !important;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
        }
        .nav-category .nav-link:hover {
            background-color: #e8f5e9;
            color: #1e7e34;
        }
        .nav-category .nav-link.active {
            color: #fff;
            background-color: #28a745;
            border-color: #28a745;
        }
        @media (max-width: 575.98px) {
            .card-body-horizontal {
                flex-direction: column;
                align-items: stretch;
            }
            .card-img-fixed {
                width: 100%;
                min-width: 100%;
                height: 200px;
            }
            .nav-category .nav-link {
                padding: 4px 12px;
                font-size: 13px;
            }
        }
