main h4 {
    margin-bottom: 0.5rem;
}
.apptitle {
    font-style: italic;
    margin-bottom: 0.3rem;
    color: rgb(255, 255, 255);
}
.title-pill {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background-image: linear-gradient(to bottom, #007bff, 80%, #b8d9ff);

    color: #dddddd;
    margin-top: 30px;
    margin-bottom: 25px;
    box-shadow: 2px 2px 10px 0px #eeeeee;
    border: 2px solid white;
    border-radius: 90px;
}
.title-pill h2 {
    margin: 0;
    padding-bottom: 20px;
    flex-grow: 1;
    text-align: center;
    color: inherit;
}
.iconsize {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}
.info-table {
    width: 280px;
    margin: 1.5rem auto;
    border-collapse: collapse;
}
.info-table th,
.info-table td {
    padding: 0.2rem;
    text-align: left;
    border: 1px solid #444444;
}
.info-table th {
    background-color: #024e9e;
    color: #ffffff;
    text-align: center;
    font-style: italic;
}
.info-table td:first-child {
    background-color: #e9eef2;
    font-weight: bold;
    width: 40%;
}
.info-table td:last-child {
    background-color: #024e9e;
    color: #e9eef2;
    padding-left: 5px;
}
main ul {
    list-style-position: inside;
    padding-left: 1.2rem;
    margin-top: 0.3rem;
}
main ul+p {
    margin-top: 0.8rem;
}
main ol {
    list-style-position: inside;
    padding-left: 1.2rem;
    margin-top: 0.3rem;
}
main ol li::marker {
    color: #007bff;
    font-weight: bold;
}
main h5 {
    margin-top: 1rem;
}
main h4 {
    margin-top: 1rem;
}
.blutex {
    color: #007bff;
    font-weight: bold;
}
.smallfont {
    font-size: 0.9rem;
    list-style-type: circle;
}
.screenshot-alt {
    display: block;
    margin: 1rem auto;
    width: 40%;
    max-width: 100%;
    height: auto;
}
.screenshot-fit {
    display: block;
    margin: 1rem auto;
    width: 60%;
    max-width: 100%;
    height: auto;
}
.iconsize-a {
    max-height: 1em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.25em;
}
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    background-color: #0021445d;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
.app-header h2 {
    margin-bottom: 0;
}
.app-header img {
    height: 32px;
    width: auto;
}
.promo-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.app-buttons {
    text-align: center;
}
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-right: 1rem;
    margin-top: 1rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}
.page-buttons {
    text-align: center;
}
.btn:hover {
    background-color: #0056b3;
}
@media (min-width: 769px) {
    .app-body {
        display: flex;
        gap: 2rem;
    }
    .info-table th,
    .info-table td {
        padding: 0.3rem;
        padding-left: 10px;
    }
    .info-table td:last-child {
        padding-left: 10px;
    }
    .app-body .promo-image {
        width: 50%;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .app-body .app-details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .app-buttons {
        text-align: left;
    }
    .app-header img {
        height: 48px;
    }
    .info-table {
        width: 420px;
    }
    .screenshot-alt {
        width: 25%;
    }
    .screenshot-fit {
        width: 25%;
    }
}
main section:last-of-type {
    margin-bottom: 32px;
}
@media (prefers-color-scheme: dark) {
    .title-pill {
        box-shadow: 2px 2px 10px 0px #aaaaaa;
        border: 2px solid #808080;
        background-image: linear-gradient(to bottom, #222222, 80%, #666666);
    }
    .btn{
        background-color: #222222;
    }
    .btn:hover {
        background-color: #444;
    }
    .info-table th,
    .info-table td {
        border: 1px solid #444444;
    }
    .info-table th {
        background-color: #222;
        color: #fff;
    }
    .info-table td:first-child {
        background-color: #adb1b4;
        color: #000;
    }
    .info-table td:last-child {
        background-color: #222;
        color: #e9eef2;
    }
}