html,
body {
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    color: #000;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    background: #888;
}

#app {
    width: 8.5in;
    min-height: 11in;
    margin: 0.5in auto;
    padding: 0.2in 0.5in;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

hr.section-divider {
    border-top: solid 2px #000 !important;
    margin: 2px 0;
}

a {
    text-decoration: none;
    color: #000;
}

.icon-row {
    display: flex;
    justify-content: space-between;
}

.icon-row>span {
    font-size: 12px;
    padding-right: 20px;
}

i {
    margin-right: 3px;
}

ul {
    padding-left: 0;
    margin: 3px 0px;
    list-style-type: none;
}

main {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    margin-bottom: 6px;
}

h2 {
    margin: 6px 0 0 0;
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
}

h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 3px 0 1px 0;
}

h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 2px 0px;
}

.links {
    display: flex;
    justify-content: left;
    padding-bottom: 6px;
}

.links>span {
    font-size: 12px;
    font-weight: 600;
    padding-right: 15px;
}

p.tiny {
    --height: 3px;
    --font-size: calc(var(--height) / 3);

    font-size: var(--font-size);
    height: var(--height);
    overflow: hidden;

    color: #fff;

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;

    margin: 0px;
    margin-top: calc(-1 * var(--height));
    padding: 0px;
}

li {
    font-size: 12px;
}

.dotted-separator {
    display: none;
}

.entry-title {
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0 1px 0;
}

.entry-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 2px;
}

.job,
.education,
.project {
    margin-bottom: 8px;
}

.skill {
}

.editor-launch-button {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
}

.json-editor-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.json-editor-modal {
    width: min(900px, 92vw);
    height: min(80vh, 900px);
    background: #fff;
    border: 1px solid #000;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.json-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.json-editor-close {
    border: 1px solid #000;
    background: #fff;
    color: #000;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.json-editor-help {
    margin: 8px 0;
    font-size: 12px;
}

.json-editor-textarea {
    flex: 1;
    width: 100%;
    resize: none;
    border: 1px solid #000;
    font-family: monospace;
    font-size: 12px;
    padding: 8px;
    box-sizing: border-box;
}

.json-editor-error {
    color: #900;
    font-size: 12px;
    margin: 8px 0 0 0;
}

.json-editor-valid {
    color: #060;
    font-size: 12px;
    margin: 8px 0 0 0;
}

@media print {
    @page {
        size: letter;
        margin: 0;
    }

    .no-print {
        display: none !important;
    }

    body {
        background: #fff;
    }

    #app {
        width: 8.5in;
        min-height: 11in;
        margin: 0;
        padding: 0.2in 0.5in;
        box-shadow: none;
    }
}