
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #f0f0f0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
        }
        /* Header Styles */
        .site-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 5px;
            border-bottom: 2px solid #D30000;
        }
    .logo-area .logo {
    max-width: 850px; /* Increased the max-width to allow the logo to be larger */
}
        .tag-cloud-area {
            text-align: center;
            background-color: #F4F4F4;
            padding: 15px;
            border: 1px solid #ddd;
            max-width: 350px;
        }
        .tag-cloud-title {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .intro-banner {
            text-align: center;
            font-weight: bold;
            padding: 10px;
            background-color: #f8f8f8;
        }

        /* Main Content Layout */
        .content-wrapper {
            display: flex;
            padding: 15px;
        }
        .main-content {
            flex: 3;
            margin-right: 15px;
        }
        .sidebar {
            flex: 1;
        }
        
        /* News Navigation Bar */
        .news-nav {
            display: flex;
            background-color: #D30000;
            padding: 10px;
            justify-content: space-around;
            align-items: center;
        }
        .news-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
        }
        
        /* News Feed Styles */
        .story-item {
            display: flex;
            align-items: center;
            padding: 6px 10px; /* <<< FIX: Reduced vertical padding */
            border-bottom: 1px solid #eee;
        }
        .story-item:nth-child(even) { background-color: #f9f9f9; }
        .story-item .source-logo img {
            width: 80px;
            margin-right: 15px;
        }
        .story-item .story-details a {
            text-decoration: none;
            color: #000;
        }
        
        .time-separator {
            background-color: #D30000;
            color: #fff;
            font-weight: bold;
            padding: 8px;
            margin: 10px 0;
        }
        
        /* Sidebar Widgets */
        .widget {
            background-color: #f4f4f4;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            text-align: center;
        }
        .widget img { max-width: 100%; height: auto; } /* Ensure banner images are responsive */
        .widget a {
            color: #3600ef;
        }
        
        /* Footer Styles */
        .site-footer {
            text-align: center;
            padding: 20px;
            font-size: 12px;
            color: #555;
            border-top: 1px solid #ddd;
        }
        .site-footer a {
            color: #3600ef;
        }
        .footer-links a {
            margin: 0 5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content-wrapper { flex-direction: column; }
            .main-content { margin-right: 0; margin-bottom: 15px; }
            .site-header { flex-direction: column; align-items: center; }
            .tag-cloud-area {         display: none; /* Hides the tag cloud on mobile */ }
             .sidebar {         display: none; /* Hides the tag cloud on mobile */ }
        }

