:root,
body {
    font-family: Arial, Helvetica, sans-serif;
    touch-action: none;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
    overflow: hidden;
    /* text-rendering: optimizeLegibility; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#wrapper {
    box-sizing: border-box;
    position: relative;
    max-width: 50em;
    padding: 6px 10px 0px 10px;
}

.header {
    font-size: larger;
    margin-bottom: 10px;
}

#siteList {
    user-select: none;
    box-sizing: border-box;
    display: flex;
    min-height: 20em;
    flex-direction: column;
    border: solid 1px #cccccc;
    margin-bottom: 10px;
}

.site-entry:nth-child(even) {
    background-color: #f2f2f2;
}

.site-entry {
    display: flex;
    gap: 10px;
    background-color: #fafafa;
}

.site-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    flex: 1;
}

.site-button>img {
    height: 20px;
}

.site-entry:hover {
    background-color: #fff3b5;
}

.delete-button:hover {
    font-weight: bold;
}

.delete-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    color: red;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
}

.action-buttons>button {
    min-width: 10em;
}

#appFrame {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    visibility: hidden;
}
