body {
    line-height: normal !important;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

nav #clear {
    padding: 10px;
    cursor: pointer;
}

nav #subscribe {
    padding: 10px;
    cursor: pointer;
    color: white;
    display: none;
}

nav #subscribe.disabled {
    color: lightgrey;
    cursor: wait;
}

#list {
    padding: 0;
    margin: 4px 0 0 0;
    height: calc(100vh - 4px);
    background-color: #f0f0f0;
    list-style-type: none;
    overflow-y: scroll;
}

#list li {
    height: 50px;
    color: black;
    position: relative;
    text-decoration: none;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
}

#list li img {
    width: 50px;
    height: 50px;
}

#list li .description {
    position: absolute;
    left: 60px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#list li .description .prices {
    font-weight: bold;
}

#list li .description .oldprice {
    text-decoration:line-through;
}

#list li .from {
    position: absolute;
    bottom: 0;
    right: 5px;
    color: #555;
    font-size: smaller;
}

/* specific push-to-refresh.js */

.spinner-border {
  --bs-spinner-border-width: 0.10em;
}

#list > li:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}