body {
    font-family: sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-size: 1.5em;
}

#search-container {
    width: 95%; /* Use more screen width */
    position: relative;
}

#search-box {
    width: 100%;
    padding: 20px;
    font-size: 1.5em;
    border: 1px solid #444; /* Darker border */
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #1e1e1e; /* Dark input background */
    color: #e0e0e0; /* Light text */
}

#results-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #1e1e1e; /* Dark background */
    border: 1px solid #444; /* Darker border */
    border-top: none;
    border-radius: 0 0 5px 5px;
}

#results-list li {
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
}

#results-list li.selected {
    background-color: #333; /* Darker selected background */
}

#content-container {
    width: 95%;
    background-color: #1e1e1e; /* Dark background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Darker shadow */
}

#article-title {
    font-size: 2.5em; /* Increase title font size */
}

#article-content {
    font-size: 1.5em; /* Increase content font size */
    line-height: 1.6;
}

#review-container .article {
    margin-bottom: 40px;
}

#review-all-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: auto;
    padding: 12px 18px;
    font-size: 0.9em;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #e0e0e0;
    cursor: pointer;
}

.hidden {
    display: none;
}