<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">th,
tbody&gt;tr {
    cursor: pointer;
}

table&gt;thead&gt;tr&gt;th,
table&gt;thead&gt;tr&gt;td,
table&gt;tbody&gt;tr&gt;th,
table&gt;tbody&gt;tr&gt;td,
table&gt;tfoot&gt;tr&gt;th,
table&gt;tfoot&gt;tr&gt;td {
    border-width: 1px 0;
}

.dk-modal-desktop {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    border-radius: 0.5rem;
}

.dk-modal-content-desktop {
    overflow-y: auto;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: justify;
    margin: 10px;
}

.dk-modal-mobile {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

.dk-modal-content-mobile {
    width: 90%;
    overflow-y: auto;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: justify;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dk-content-title {
    font-weight: bold;
    font-size: 18px;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
}

.th-project-title {
    width: 35%;
}
@media only screen and (max-width: 992px) {
    .td-project-title, .th-project-title {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .dk-modal-desktop {
        width: 60%;
    }
    .dk-modal-content-desktop {
        max-height: 350px;
    }
}

@media only screen and (min-width: 992px) {
    .dk-modal-desktop {
        width: 50%;
    }
    .dk-modal-content-desktop {
        max-height: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    .dk-modal-desktop {
        width: 40%;
    }
    .dk-modal-content-desktop {
        max-height: 450px;
    }
}</pre></body></html>