
.reqTable {
    display: block;
}

.reqTable > div {
    font: 13px Tahoma;
    display: grid;
    column-gap: 7px;
    grid-template-columns: 1fr 70px 1fr 70px 1.2fr 150px;
}

.reqTable > div > * {
    align-self: center;
}

.reqTable input, .reqTable select, .reqTable ul {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.reqTable ._messages {
    width: auto;
}

.reqTable > div::before, .reqTable > div:last-of-type::after {
    content: '';
    grid-column: 1 / span 6;
    height:0px;
    border: 0.5px solid darkgrey;
    background-color: lightgrey;
    margin: 7px 0;
}

.reqTable > div:first-of-type::before, .reqTable > div:last-of-type::after {
    height: 3px;
    border: 1px solid darkgrey;
}

.reqTable .row {
    grid-column: 1 / span 6;
    font-weight: bold;
}

.reqTable .rowWithHelp {
    grid-column: 1 / span 6;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.reqTable .allButFirst {
    grid-column: 2 / span 5;
}

.reqTable .five {
    grid-column-start: 5;
}

.reqTable .first2 {
    grid-column: 1 / span 2;
}

.reqTable .last4 {
    grid-column: 3 / span 4;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
}

.reqTable .last4 > div:first-child {
    flex: 0 0 15px;
}

.reqTable .threeFive {
    grid-column: 3 / span 2;
}

.reqTable .twoSix {
    grid-column: 2 / span 4;
}

.reqTable .twoFive {
    grid-column: 2 / span 3;
}

.reqTable .twoFour {
    grid-column: 2 / span 2;
}

.reqTable .fiveSeven {
    grid-column: 5 / span 2;
}

.errResult {
    margin-bottom: 13px;
}

.errResult .id {
    margin-bottom: 3px;
}

.errResult .resultStr, .errResult .link {
    margin-left: 20px;
    font-size: 12px;
}

.bubble-text {
    color: green;
    text-shadow:
            -1px -1px 0 lightgreen, /* Top-left shadow for border */
            1px -1px 0 lightgreen,  /* Top-right shadow for border */
            -1px 1px 0 lightgreen,  /* Bottom-left shadow for border */
            1px 1px 0 lightgreen;   /* Bottom-right shadow for border */
}

.limitReached #content {
    padding-left: 20px;
}

.limitReached #content h2:not(:first-of-type) {
    margin-top: 20px;
}

.limitReached #content div {
    margin-top: 15px;
    font-size: 14px;
}

.limitReached #content ul {
    font-family: arial sans-serif;
    margin: 10px;
    font-size: 14px;
}