:root {
    --md-primary-fg-color: #19448e;
    --md-primary-fg-color--light: #2056B4;
    --md-primary-fg-color--dark: #123268;
}

.title-image {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

@media print {

    .md-sidebar--primary,
    .md-sidebar--secondary {
        display: none;
    }

    .md-content {
        margin-left: 0;
    }
}

.table-wrapper {
    text-align: center;
    width: 80%;
}

table.download {
    font-size: 0.8em;
    width: 80%;
    display: flex;
    flex-direction: column;
    border-collapse: collapse;
    border: none;
    margin-bottom: 20px;
}

table.download tr {
    display: flex;
    width: 100%;
    flex-direction: row;
}

table.download td {
    display: flex;
    width: 80%;
    padding: 10px;
    border: none;
    /*1px solid #ccc;*/
    align-items: center;
    justify-content: flex-start;
}

table.download td:first-child {
    width: 15%;
    min-width: 120px;
    text-align: left;
    font-weight: bold;
    background-color: #f0f0f0;
    white-space: nowrap;
}

table.download td.lid-input input.lid-input {
    width: 100%;
    margin-right: 10px;
}

table.download input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 2px solid #007BFF;
    border-radius: 4px;
    background-color: #f9f9f9;
}

table.download input[type="text"]:focus {
    border-color: #0056b3;
    background-color: #e9f5ff;
}

table.download span.comment {
    /*font-size: 0.7em;*/
    color: #555;
    white-space: nowrap;
}

button.download {
    font-size: 0.8em;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    /* display: block;  */
    margin: 0 auto;
}

button.download:hover {
    background-color: #0056b3;
}