@font-face {
    font-family: "DMSans";
    src: url(/fonts/DMSans/DMSans-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

:root {
    --table-width: 1000px;
}

main {
    width: 600px;
    height: 100%;
}

.tblContainer {
    max-height: 800px;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), transform 0.4s;
}
.tblContainer.full {
    max-height: 800px;
    transform-origin: top;
    transform: scaleY(1);
    transition: max-height 0.6s ease-in-out, transform 0.4s;
}
.contracted {
    max-height: 0px;
    transform-origin: top;
    transform: scaleY(0);
}

.link-icon {
    margin-right: 20px;
    margin-top: 0px;
    float: left;
}
.link-icon:hover {
    color: lightblue;
}

.label-text {
    display: contents;
    color: #444;
    font-family: "DMSans";
    font-weight: bold;
    font-size: 14pt;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 20px;
    padding: 10px;
    float: left;
}
.label-text:hover {
    color: lightblue;
}

.icon-expand {
    font-size: 20pt;
    color: #444;
    position: absolute;
    right: 0;
    cursor: pointer;
}
.icon-expand:hover {
    color: lightblue;
}

h1 {
    font-family: "DMSans";
    font-weight: 300;
    font-style: normal;
    font-size: 24pt;
    color: #444;
    margin-left: 60px;
}

.bubble {
    position: absolute;
    background-color: #444;
    color: white;
    padding: 6px;
    border-radius: 6px;
    font-family: "DMSans";
    font-weight: 300;
    font-style: normal;
    font-size: 9pt;
    z-index: 1000;
}

.my-text {
    font-family: "DMSans";
    font-weight: 100;
    font-style: normal;
}

.copy-button {
    font-size: 12pt;
    cursor: pointer;
}
.copy-button:hover {
    color: blue;                
}

#copy-field {
    width: 0px;
    height: 0px;
    position: absolute;
    top: -100px;
    left: -100px;
}

.index-table {
    margin-left: 20px;
    border-collapse: collapse;
    margin-top: 0px;
    padding: 0px;
}

.index-table td:nth-child(2) {
    font-size: 9pt;
    
}

.table-header {
    background-color: #EEE;
    color: #444;
    font-family: "DMSans";
    font-weight: bold;
    font-size: 14pt;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 20px;
    padding: 10px;
    width: fit-content;
    border: 0px solid #DDD;
    border-radius: 6px; 
    box-shadow: 3px 3px 8px 3px #888888b0;
    display: inline-flex;
    padding-right: 100px;
    position: relative;
}

.index-table table {
    width: var(--table-width);
    font-family: "DMSans";
    font-size: 11pt;
}

.index-table thead tr td {
    background-color: #676968;
    color: white;
    width: 600px;
    padding: 6px;
    font-size: 12pt !important;
}
.index-table tr {
    border-bottom: 1px solid #363d39;
}
tr:nth-child(even) {
    background-color: #ede4da;
}
.index-table td {
    padding: 5px;
    color: #444;
}            
.index-table a {
    color: #3f3c79;
    font-style: normal;
    font-weight: 400;  
    font-size: 11pt;
    text-decoration: none;
}
.index-table a:hover {
    color: darkgreen;
    text-decoration: underline;
}

