        :root {
            --primary-blue: #0078D7;       /* Main blue instead of WhatsApp green */
            --dark-blue: #005A9E;          /* Dark blue instead of WhatsApp dark green */
            --light-blue: #3AA0F2;         /* Light blue instead of WhatsApp light green */
            --light-bg: #E6F2FF;           /* Message bubble blue instead of WhatsApp light green */
            --chat-bg: #ECF4FC;            /* Background color instead of WhatsApp gray */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--chat-bg);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .head {
            background-color: var(--dark-blue);
            color: white;
            padding: 15px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        h1 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .filters {
            background-color: var(--primary-blue);
            padding: 15px;
            border-radius: 0 0 10px 10px;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filters input, .filters select {
            padding: 8px;
            border: none;
            border-radius: 20px;
            flex-grow: 1;
            min-width: 120px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-left: 5px solid var(--primary-blue);
        }
        
        .news-image-container {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
            background-color: var(--light-bg);
        }
        
        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .fallback-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-blue);
            color: white;
            font-size: 3rem;
        }

        .fallback-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-blue);
            color: white;
            font-size: 3rem;
        }
        
        .news-content {
            padding: 15px;
        }
        
        .news-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }
        
        .news-description {
            margin-bottom: 15px;
            color: #555;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #777;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }
        
        .news-link {
            display: inline-block;
            background-color: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .pagination button {
            background-color: var(--dark-blue);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
        }
        
        .pagination button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        
        .pagination span {
            display: flex;
            align-items: center;
            padding: 0 10px;
        }
        
        .status-message {
            text-align: center;
            padding: 20px;
            background-color: var(--light-bg);
            border-radius: 10px;
            margin-bottom: 15px;
        }