html {
    background-color: #e6e6e6;
}

body {
    width: auto;
}

/* --- header --- */
.logo-container {
    margin-top: 30px;
    text-align: center;
}

.logo {
    height: 60px;
}

/* --- content --- */
.content {
    background-color: rgb(240 240 240);
    min-width: 340px;
    max-width: 370px;
    margin: 100px auto auto;
    text-align: left;
    border: 1px solid #c0c0c0;
    padding: 20px;
    box-sizing: border-box;
    font-size: 13px;
}

.topic-container {
    margin-bottom: 20px;
    text-align: center;

    /* want to stay one liner */
    white-space: nowrap;
}

.topic {
    font-size: 20px;
    color: #333333;
}

.sub-topic {
    color: #888888;
}

/* we need a wrapper here, else the link will float outside the container */
.home-link-wrapper {
    clear: both;
    margin-top: 30px;
    display: block;
    box-sizing: border-box;
}

/* used to align the links with padding in between */
.parent {
    display: flex;
    align-items: center;
    width: 100%;
}

.parent > div {
    flex: 1;
}

.supplier .home-link-wrapper .report-error-btn {
    background-color: var(--supplier-red);
    padding: 0.3em 1em;
    font-size: 11px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-family: Arial, Verdana, sans-serif;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    text-rendering: auto;
    text-shadow: none;
    text-transform: none;
    vertical-align: middle;
    word-spacing: 0;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    height: 2em;
    color: white;
    box-sizing: border-box;
    border: 1px solid #c0c0c0;
    width: 100%;
    display: block;
    border-radius: 3px;
}
