body {
    font-family: 'Kilroy', Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    margin: 0;
    color: #222;
}

/* Header */
.site-header {
    font-family: 'Rubisco Sans', Arial, Helvetica, sans-serif;
    background: #ffffff;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 30px;
    max-width: 100%;
}

/* Layout */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 15px;
}

.controls {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

select, input {
    font-family: 'Kilroy', Arial, Helvetica, sans-serif;
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

button {
    font-family: 'Rubisco Sans', Arial, Helvetica, sans-serif;
    font-weight: 500;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: #ff6a00;
    color: white;
    font-size: 14px;
}

button.secondary {
    background: #555;
    margin-left: 8px;
}

/* Feed display */
.feed-info h2 {
    font-family: 'Rubisco Sans', Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.item {
    background: white;
    margin-bottom: 18px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.item img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.item-content {
    padding: 16px;
}

.item h3 {
    font-family: 'Rubisco Sans', Arial, Helvetica, sans-serif;
    margin: 0 0 6px 0;
    font-size: 18px;
}

.item a {
    color: #ff6a00;
    text-decoration: none;
}

.item a:hover {
    text-decoration: underline;
}

.date {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #666;
}