example-frame { display: flex; flex-direction: row-reverse; align-items: flex-start; column-gap: 10px; margin-inline: auto; width: 720px; }
example-panel { display: flex; flex-direction: column; justify-content: center; gap: 5px; }
example-img { display: block; background-image: url("../images/e1.png"); width: 604px; min-width: 604px; height: 456px; min-height: 456px; position: relative; background-repeat: no-repeat; background-size: contain; }
[lang="en"] example-img::before { content: "Select CSS File"; left: 1px; position: absolute; top: -40px; font-size: 28px; text-shadow: rgb(150, 150, 150) 1px 1px 1px; font-style: oblique; }
[lang="he"] example-img::after { content: "בחר קובץ CSS"; right: 1px; position: absolute; top: -40px; font-size: 28px; text-shadow: rgb(150, 150, 150) 1px 1px 1px; font-style: oblique; }
example-item { display: none; border: 3px solid rgb(255, 0, 0); border-radius: 50px; position: absolute; }
.current { width: 244px; height: 32px; left: 0px; top: 64px; }
.list { width: 192px; height: 142px; left: 9px; top: 159px; }
label { box-shadow: rgb(173, 173, 173) 1px 1px 1px 1px; border-radius: 4px; padding: 0px 0px 0px 3px; width: 110px; white-space: pre; user-select: none; direction: ltr; text-align: center; }
label:hover { background-color: rgb(0, 110, 255); color: rgb(255, 255, 255); cursor: pointer; }
input[type="radio"] { display: none; }
example-frame:has([data-type="current"]:checked) .current { display: inline-block; }
example-frame:has([data-type="list"]:checked) .list { display: inline-block; }
label:has(input[type="radio"]:checked) { font-weight: bold; box-shadow: rgb(173, 173, 173) 1px 1px 1px 1px inset; }
label:has(input[type="radio"]:checked):hover { background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); cursor: default; }
@media screen and (max-width: 750px) {
  example-frame { display: flex; flex-direction: column; width: 310px; align-items: stretch; }
  example-panel { display: flex; flex-flow: wrap; justify-content: space-evenly; }
  example-img { height: 231px; min-height: 231px; width: 306px; min-width: 306px; }
  .current { width: 111px; height: 26px; left: 0px; top: 29px; }
  .list { width: 88px; height: 102px; left: 0px; top: 50px; }
}