@font-face {
    font-family: "TTLakes";
    src: url("../fonts/TTLakes-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

/* @font-face {
    font-family: "TTLakes";
    src: url("https://localhost:9000/TTLakes-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
} */

html {
    height: 100%;
}

body {
    min-height: 100%;
}

.page {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.header {
    flex: 0 0 auto;

    padding: 0 22px;
    background:
        url('../img/bgr.png') no-repeat right -67px,
        linear-gradient(93.97deg, #2C2C2C 0.75%, #474A4D 97.82%),
        linear-gradient(0deg, #D9D9D9, #D9D9D9);
    height: 60px;
    color: #fff;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#header-warning-icon {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.warning-description {
    color: #ff5c4a; font-size: 12px
}

.content {
    flex: 1 1 auto;

    overflow-y: auto;
}

.footer {
    flex: 0 0 auto;

    padding: 0 30px;
    background:
        url('../img/bgr.png') no-repeat right -67px,
        linear-gradient(93.97deg, #2C2C2C 0.75%, #474A4D 97.82%),
        linear-gradient(0deg, #D9D9D9, #D9D9D9);
    height: 56px;
    color: #fff;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

h1 {
    font-family: 'TTLakes', Times, serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}

.info-icon {
    margin-right: 9px;
}

.property-list {
    font-family: 'TTLakes', Times, serif;
    font-style: normal;
}

.property {
    padding: 0 20px 9px 20px;
}

.property-key {
    padding-top: 9px;
    padding-bottom: 4px;
    border-top: 1px solid #ebf5f8;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #788b9c !important;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.property:first-child .property-key {
    border-top-color: transparent;
}

.property-key a:link,
.property-key a:visited,
.property-key a:hover,
.property-key a:active {
    color: #f0a601;
}

.property-key-link {
    text-decoration: none;
    margin-right: 10px;
}

.property-value {
    /* height: 18px; */
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #3c4051;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.property-ok .property-value {
    color: #43c079;
}
.property-warning .property-value {
    color: #ff5c4a;
}

.property-value-icon {
    margin-right: 5px;
}

.hidden {
    display: none !important;
}


.changelog-container {
    display: flex;
    align-items: center;
    position: relative;
}

.changelog-data-container {
    display: flex;
    align-items: start;
    position: relative;
}

.changelog-container svg {
    margin-right: 8px;
}

.truncated-text {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.changelog-arrow {
    cursor: pointer;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.changelog-arrow.expanded {
    transform: rotate(180deg);
}

.changelog-details.expanded {
    max-height: 500px;
}

.changelog-content {
    font-size: 12px;
    line-height: 1.5;
    color: #3c4051;
    margin-left: 4px;
    transition: max-height 0.3s ease;
}

.changelog-content.expanded {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    max-width: none;
}

.changelog-description-inline {
    margin-left: 5px;
    max-width: 200px;
    flex: 1;
    display: inline-block;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}