        /* Basic Styling for the RSS Viewer */
        .rss-container {
            max-width: 299px;
            height: 271px;
            width: 289px;
            border: 0 none;
            overflow-y: scroll;
            overflow-x: hidden;
            scrollbar-gutter: stable;
        }
        
        .rss-wrapper {
          border-radius: 4px;
          overflow: hidden;
          margin: 5px;
          height: 271px;
          width: 289px;
          }
          
        .rss-item {
            padding: 0px 5px 0px 5px;
            margin: 0px 1px 1px 0px;
            background-color: var(--primary);
        }
        .rss-item:last-child {
            border-bottom: none;
        }
        .rss-item h3 {
            font-size: 12px;
            font-weight: 700;
            padding: 8px 0px 8px 0px;
        }
        .rss-item h3 a {
            text-decoration: none;
            filter: brightness(90%);
        }
        .rss-item p {
            font-size: 10px;
            filter: brightness(60%);
        }
        .rss-item .pub-date {
            font-size: 8px;
            font-weight: 700;
            filter: brightness(95%);
            padding-left: 237px;
        }
        .textcolor {
            color: #ffa9ef;
        }
        .mood {
            margin: 0px 5px 0px 5px;
            filter: brightness(100%);
          }
        .blogimage {
            width: 268px;
            height: auto;
            outline: 1px solid #0000000d;
            margin-top: 5px;
          }
        .error {
            color: red;
            width: 289px;
            height: 271px;
            background-color: white;
            text-align: center;
          }
          
        .rss-search-bar {
          position: absolute;
          margin-left: 149px;
          height: 9px;
          margin-top: 1px;
          font-size: 10px;
        }
          
          
         /*
.rss-container	The main outer box holding all the feed items.
.rss-item	A single entry/article within the feed.
.rss-item h3	The title of the article.
.rss-item h3 a	The link for the article title.
.rss-item p	The description/summary text.
.pub-date	The span containing the publication date. */