*,
::after,
::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background: rgb(2, 0, 36);
    background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(59, 64, 66, 1) 100%);
}

.container {
    background: white;
}

.container+.container {
    padding: 0 142px 0 20px;
}


td,
th {
    padding: 6px 15px;
}

.col td {
    padding: 4px;
}

td:first-child {
    line-break: anywhere;
}

td:last-child {
    white-space: nowrap;
}

table {
    font-size: 12px;
}

.sum {
    font-weight: bold;
}

.sum td:first-child {
    text-align: right;
}

@media (max-width: 1100px) {
    iframe {
        display: none;
    }
}

.big {
    font-size: xx-large;
}

.medium {
    font-size: x-large;
}

.time {
    font-size: 102px;
}

.green {
    color: green;
    font-weight: bold;
}

.red {
    color: red;
    font-weight: bold;
}

input,
select {
    max-width: 700px;
    width: 100%;
}

.alert {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: #ebf7fd;
    color: #2d7091;
    border: 1px solid rgba(45, 112, 145, 0.3);
    border-radius: 4px;
    text-shadow: 0 1px 0 #fff;
    overflow: hidden;
    background: #fff1f0;
    color: #d85030;
    border-color: rgba(216, 80, 48, 0.3);
    max-width: 700px;
    box-sizing: border-box;


}

.alert.warning {
    background: #fffceb;
    color: #e28327;
    border-color: rgba(226, 131, 39, 0.3);
}

.alert.info {
    background: rgba(0, 155, 222, 0.3);
    color: #00425f;
    border-color: #009bde;
}

.intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f4f8 100%);
    border: 1px solid #e1e8ed;
    border-left: 6px solid #e28327;
    padding: 30px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.intro-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(226, 131, 39, 0.05) 0%, transparent 70%);
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-subtext {
    font-size: 1.15rem;
    color: #5d6d7e;
    line-height: 1.6;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

.highlight-date {
    color: #e28327;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 0 2px;
}




.error {
    color: darkred;
    font-style: italic;
    line-height: 1;
    font-size: small;
}

.colgroup {
    display: inline-block;
    margin-bottom: 40px;
    width: 100%;

}

.col {
    width: 20%;
    box-sizing: border-box;
    float: left;
    border-right: 1px solid gray;
    padding: 0 6px;

}


.container+.container img {
    max-width: 100%;
    width: 700px;
    margin: 22px 0;
    display: block;
}

img#title {
    width: 100%;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    .col {
        width: 100%;
    }

}

@media only screen and (max-width: 1020px) {
    .container+.container {
        padding: 0 20px;
    }

}

@media print {

    #title,
    .no-print,
    .footer-info,
    form {
        display: none !important;
    }

    .container,
    .container+.container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
    }

    body {
        background: white !important;
    }

    table {
        width: 100% !important;
        border-collapse: collapse;
    }

    th,
    td {
        border: 1px solid #000 !important;
        padding: 8px !important;
    }
}