﻿.finance-background {
    background-color: #eaf7ef;
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f7ff"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%23e1effe"/><circle cx="50" cy="50" r="3" fill="%23c1d6fb"/><path d="M10 80 L20 70 L30 80 L40 70 L50 80 L60 70 L70 80 L80 70 L90 80" stroke="%23b3c9f9" fill="none" stroke-width="1"/></svg>'); */
    background-repeat: repeat;
    background-size: 100px 100px;
    min-height: 100vh;
    width: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-divider {
    border-color: #4A4A4A !important;
}

.fixed-min-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;  Limits max lines to 3 
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    flex-grow: 1;  Ensures content takes up space 
    align-items: flex-start;
}

.three-line-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.5em;
}
/*
.fixed-min-truncate {
    --line-height: 1.5;
    --min-lines: 3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    min-height: calc(var(--line-height) * var(--min-lines) * 1ch);
}
*/
/*.fixed-min-truncate {
    display: grid;
    grid-template-rows: minmax(3em, auto);*/ /* Ensures at least 3 lines */
    /*-webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}*/

.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}