body {
    background-color: lightgray;
}

hr.dotted-white {
    border-top: 2px dashed white;
}

#countDisplay {
    position: absolute;
    background-color: white;
    padding:4px;
    width: 100%;
}

.log-list {
    list-style-type: none;  /* Remove default bullets */
    padding: 0;
    width: 100%;  /* Define a specific width */
    margin: 0 auto;  /* Center the list on the page */
    background-color: #f9f9f9;  /* Light grey background */
    border: 1px solid #ddd;  /* Grey border */
}

.log-list li {
    padding: 10px;  /* Add some padding */
    border-bottom: 1px solid #ddd;  /* Add a border between items */
}

.log-list li:first-child {
    border-top: 1px solid #ddd;  /* Add a border to the top item */
}

.log-list li:hover {
    background-color: #ddd;  /* Change background on hover */
}

.search-container {
    margin-bottom: 15px;
}
.search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}