body {
    background-color: #f3f3f3;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Main content container */
.article-container {
    width: 900px;
    background-color: #ffffff;
    padding: 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Individual article */
.article-box {
    padding-bottom: 30px;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

/* Last article shouldn't have a border */
.article-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Article title */
.article-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

/* Article text */
.article-box p {
    line-height: 1.6;
    font-size: 16px;
}

/* Article meta info (date + author) */
.article-box .meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Search input */
input {
    padding: 0 15px;
    width: 300px;
    height: 42px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Search button */
button {
    width: 110px;
    height: 44px;
    font-size: 18px;
    cursor: pointer;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
}

/* Button hover effect */
button:hover {
    background-color: #004999;
}

h1, h2 {
    text-align: center;
    color: #222;
}
/* Search bar container */
.search-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

/* Form layout */
.search-container form {
    display: flex;
    gap: 10px;
}
.back-link {
    display: inline-block;
    margin: 20px 0;
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f3f3f3;
    color: #777;
    margin-top: 40px;
}