body {
    font-family: sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background-color: #f4f4f4;
}

h1, h2 {
    color: #333;
}

textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

button {
    padding: 10px 15px;
    background-color: #0b57d0; /* Firebase blue */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #0a46b0;
}

#results-container {
    margin-top: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#results-list {
    list-style: none;
    padding: 0;
}

#results-list li {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

 #results-list li:last-child {
    border-bottom: none;
}

#results-list strong {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

#results-list p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

 #results-list .score {
    font-weight: bold;
    color: #0b57d0;
 }

 #results-list .meta-info span {
    margin-right: 15px;
    font-size: 0.8em;
    color: #888;
 }

#loading-indicator {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #777;
}
