 .page-wrapper {
            display: flex;
            max-width: 1600px;
            margin: 0 auto;
            min-height: 100vh;
        }

        /* Sidebar Styles */
        .sidebar {
            width: 320px;
            background: white;
            padding: 10px 5px;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
        }

        .search-box {
            position: relative;
            margin-bottom: 30px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            background: #fafafa;
        }

        .search-box input:focus {
            outline: none;
            border-color: #c41e3a;
            background: white;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .filter-section {
            margin-bottom: 5px;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
            max-height:none;
        }

        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            cursor: pointer;
            user-select: none;
        }

        .filter-header h3 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }

        .filter-toggle {
            font-size: 10px;
            color: #666;
            transition: transform 0.3s;
        }

        .filter-section.collapsed .filter-toggle {
            transform: rotate(-90deg);
        }

        .filter-content {
            padding: 5px 0;
            max-height: 300px;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .filter-section.collapsed .filter-content {
            max-height: 0;
            padding: 0;
        }
        
        #month-filter {
            display: grid;
            /*grid-template-columns: 1fr 1fr; */
            gap: 10px;
            max-height: none; 
        }
        #categories-filter{
             display: grid;
            /*grid-template-columns: 1fr 1fr; */
            gap: 10px;
            max-height: none;
        }

        .filter-option {
            padding: 5px 0;
            cursor: pointer;
            font-size: 14px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space:nowrap;
        }

        .filter-option:hover {
            color: #c41e3a;
        }

        .filter-option input[type="checkbox"] {
            width: 14px;
            height: 14px;
            cursor: pointer;
        }

        /* Main Content Styles */
        .main-content {
            flex: 1;
            padding: 12px;
            background: #f5f5f5;
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .active-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .reset-btn {
            background: transparent;
            border: none;
            color: #c41e3a;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            padding: 8px 0;
        }

        .reset-btn:hover {
            text-decoration: underline;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 13px;
            color: #333;
        }

        .filter-tag .remove {
            cursor: pointer;
            color: #999;
            font-weight: bold;
        }

        .filter-tag .remove:hover {
            color: #c41e3a;
        }

        .sort-controls {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .sort-select {
            padding: 8px 30px 8px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            background: white;
            cursor: pointer;
        }

        .view-toggle {
            display: flex;
            gap: 5px;
        }

        .view-btn {
            padding: 8px;
            background: white;
            border: 1px solid #ddd;
            cursor: pointer;
            border-radius: 4px;
        }

        .view-btn.active {
            background: #c41e3a;
            border-color: #c41e3a;
            color: white;
        }

        /* Month Header */
        .month-header {
            background: white;
            padding: 5px;
            margin-bottom: 5px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .month-header h2 {
            color: #c41e3a;
            font-size: 16px;
            font-weight: 700;
        }

        /* Programs List */
        .programs-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .program-row {
            background: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 10px;
            align-items: center;
            transition: box-shadow 0.3s;
        }

        .program-row:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .program-row.hidden {
            display: none;
        }

        .program-title {
            font-weight: 600;
            font-size: 16px;
            color: #333;
            line-height: 1.5;
        }

        .program-dates {
            color: #666;
            font-size: 14px;
        }

        .program-venue {
            color: #666;
            font-size: 14px;
        }

        .program-price {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            text-align: right;
        }
        
        .program-price a .register-btn {
             display: inline-block;
            background-color: #B8DD14;
            color: #fff !important;
            padding: 10px 6px;
            border: none;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        

        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 8px;
            color: #999;
        }

        .results-count {
            margin-bottom: 20px;
            color: #666;
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            .page-wrapper {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
            }

            .program-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .program-price {
                text-align: left;
            }
        }