      /* General Component Styles */
        .content-browser-wrapper {
            background-color: #f9fafb; /* Soft light gray background */
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            border: 1px solid #e5e7eb;
            box-sizing: border-box; /* Added box-sizing */
        }
        .browser-header {
            font-size: 1.125rem;
            line-height: 1.75rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }
        .content-list {
            display: flex;
            flex-direction: column;
            gap:0;/* 0.4rem; /* Reduced from 0.75rem for tighter spacing */
        }
        .list-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding:0;/* 0.25rem; /* Reduced from 0.5rem */
            border-radius: 0.5rem;
            transition: background-color 0.2s ease-in-out;
        }
        .list-item:hover {
            background-color: #f3f4f6;
        }
        .list-item-image-link {
            flex-shrink: 0;
        }
        .list-item-image {
            width: 4rem;
            height: 4rem;
            border-radius: 0.375rem;
            object-fit: cover;
            border: 1px solid #e5e7eb;
        }
        .list-item-content {
            flex-grow: 1;
            min-width: 0;
        }
        .list-item-title {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            transition: color 0.2s ease-in-out;
            text-decoration: none;
        }
        .list-item-title:hover {
            color: #2563eb;
        }
        .list-item-date {
            flex-shrink: 0;
            text-align: right;
            font-size: 0.875rem;
            line-height: 1.25rem;
            color: #6b7280;
            white-space: nowrap;
        }
        .browser-footer {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .filter-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .pagination-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .pagination-btn {
            padding: 0.5rem;
            border-radius: 0.375rem;
            background-color: #e5e7eb;
            border: none;
            cursor: pointer;
        }
        .pagination-btn:hover:not(:disabled) {
            background-color: #d1d5db;
        }
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .page-info {
            font-size: 0.875rem;
            line-height: 1.25rem;
            font-weight: 500;
            color: #4b5563;
            width: 5rem;
            text-align: center;
        }

        /* Utility Styles (kept from previous version) */
        .loader-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 18rem;
        }
        .loader {
            border: 4px solid #f3f3f3; border-top: 4px solid #3498db;
            border-radius: 50%; width: 40px; height: 40px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .filter-btn {
            padding: 0.375rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            background-color: #f3f4f6;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }
        .filter-btn:hover {
            background-color: #e5e7eb;
        }
        .filter-btn.active {
            background-color: #2563eb; color: white; font-weight: 600;
        }
        .line-clamp-2 {
           overflow: hidden; display: -webkit-box;
           -webkit-box-orient: vertical; -webkit-line-clamp: 2;
        }
        .hidden { display: none; }

        /* Responsive adjustments */
        @media (max-width: 640px) {
            .browser-footer {
                flex-direction: column-reverse;
            }
            .list-item-image {
                width: 3rem;
                height: 3rem;
            }
        }
