body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #1e1e1e; /* Slightly lighter dark background for the container */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* A subtle, dark shadow */
}

h1 {
    text-align: center;
    color: #f4f4f4; /* A light color for the main heading */
}

.headline {
    border-bottom: 1px solid #333; /* Lighter border for visibility on dark background */
    padding: 15px 0;
}

.headline:last-child {
    border-bottom: none;
}

.headline h2 {
    margin: 0 0 5px 0;
}

.headline h2 a {
    color: #00bfff; /* Bright blue for links */
    text-decoration: none;
    font-size: 1.2em;
}

.headline h2 a:hover {
    text-decoration: underline;
}

.headline p {
    margin: 0;
    color: #ccc; /* Lighter grey for summary text */
    font-size: 0.9em;
}

.outlet {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    margin-right: 10px;
}

/* Define your color classes here */
.color-1 { background-color: #fcba03; }
.color-2 { background-color: #3498db; }
.color-3 { background-color: #2672bf; }
.color-4 { background-color: #1686d0; }
.color-5 { background-color: #0572ba; }
.color-6 { background-color: #34495e; }
.color-7 { background-color: #000000; }
.color-8 { background-color: #9746c3; }
.color-9 { background-color: #512f70; }
.color-10 { background-color: #2c3e50; }
.default-color { background-color: #95a5a6; }

.published-date {
    font-size: 0.8em;
    color: #999; /* A slightly darker grey for the date */
    margin-top: 5px;
}