:root {
  --wave-blue-primary-400: #1DC8FF;
  --Gray-Gray100: #F1F1F1;
}

body {
    font-family: Inter, sans-serif, system-ui; /* Easy-to-read font */
    background-color: #fff; /* Light background */
    margin: 0;
    padding: 0;
}

.header {
    background: var(--wave-blue-primary-400, #1DC8FF);
    line-height: 0;
}

.header img {
    height: 38px;
    margin: 16px 20px;
}

.container {
    padding: 32px;
}

.icon {
    height: 40px;
    display: block;
}

h1 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin: 16px 0;
}

p, ol, li {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

ol {
  padding-left: 16px;
}

li {
  margin-bottom: 8px;
}

.device {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    background: var(--Gray-Gray100, #F1F1F1);
    margin: 20px auto;
}

.device table {
    display: block;
    font-size: 12px;
}
.device table td:first-child {
    padding-right: 8px;
}

.device table td:last-child {
    font-weight: 600;
}

p.advice {
    margin-top: 24px;
}