:root {
    --display-width: 800px;
    --display-height: 480px;
    --border-color: #3b3b3b;
    --border-width: 40px;
    --border-radius: 16px;

}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.display-wrapper {
    border-radius: var(--border-radius);
    border: var(--border-width) solid var(--border-color);
    width: calc(var(--display-width) + var(--border-width) * 2);
    height: calc(var(--display-height) + var(--border-width) * 2);
}

.widget-fill {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
}

.widget-clip {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.widget-5x1-shell {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

