﻿.report-list-container {
    text-align: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-actions {
    display: flex;
    gap: 10px;
    background-color: white;
    border-radius: 5px;
    align-self: stretch;
    align-content: center;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
    width: 100%;
}

.report-actions-section {
    display: flex;
    gap: 20px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.report-actions-section2 {
    display: flex;
    gap: 10px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.report-dropdown {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: var(--rz-text-title-color);
    height: auto;
}

.report-page {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    position: relative;
    padding: 0.5rem;
}

    .report-page .page-header {
        position: unset;
    }

.report-list {
    border: unset;
    overflow: auto;
    overflow-x: hidden;
    max-height: 600px;
    max-width: 600px;
}

.report-list-item {
    display: flex;
    gap: 10px;
    position: relative;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    min-width: 300px;
}

    .report-list-item .title {
        text-align: left;
    }

    .report-list-item .icon {
    }

.reportviewer-wrapper {
    display: flex;
    overflow: auto;
    flex: 1;
    align-self: stretch;
}

.reportviewer-container {
    width: calc(100% - 260px);
    margin-right: 10px;
    display: flex;
    flex: 1;
}

.reportviewer-filter {
    background-color: white;
    width: 260px;
    position: relative;
    padding: 10px;
    min-height: 200px;
    flex: 1;
}

.reportviewer-filter-indicator {
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background-color: var(--rz-secondary);
    color: white;
}

.reportviewer-container-100 {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.reportviewer-filter-overlay {
    position: fixed;
    background-color: white;
    width: 260px;
    min-height: 200px;
    max-height: calc(100% - 200px);
    right: 0;
    box-shadow: var(--rz-shadow-10) !important;
    border-radius: var(--rz-border-radius-1) !important;
    z-index: 9;
    margin-right: 10px;
    padding: 10px;
}

.filter-top {
    display: flex;
    justify-content: space-between;
}

.filter-content {
    overflow: auto;
    max-height: 500px;
}

.filter-bottom {
    border-top: var(--rz-border-base-300);
    padding-top: 10px;
    width: 100%;
    margin-top: 10px;
    background-color: white;
    display: flex;
    gap: 10px;
}

    .filter-bottom > button {
        flex: 1;
    }

.reportviewer-emptymessage {
    max-width: 400px;
    margin: auto;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 8;
}

.report-table {
    flex: 1;
    border: none !important;
    padding: 0px;
}

.settlement-report {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    background-color: white;
    position: relative;
    flex: 1;
}

.settlement-report-list {
    display: flex;
    flex-direction: column;
    overflow: auto;
    gap: 10px;
    padding: 10px;
}

.settlement-report-pager {
}

.settlement-report-column {
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.settlement-report-row {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.report-table .rz-datalist-data {
    padding: 0px !important;
}

    .report-table .rz-datalist-data > li, .report-table .rz-g > div, .rz-datalist-data > li {
        border-radius: 0px;
        box-shadow: unset;
        border: 0px;
        border-bottom: var(--rz-datalist-item-border);
        border: var(--rz-datalist-item-border);
        margin: 0px;
        padding: 10px;
    }

.report-table .rz-g {
    column-count: 2;
}

.report-table-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 50%;
}

    .report-table-item:hover {
        cursor: pointer;
        background-color: #f5f5f5;
    }

    .report-table-item:focus {
        background-color: #f5f5f5;
    }

    .report-table-item .left {
        justify-content: left;
    }

    .report-table-item .center {
        justify-content: space-between;
    }

.report-table-item-line {
    display: flex;
    gap: 5px;
}

.report-table-item-element {
    display: flex;
    align-items: center;
}

.report-table-item-line .title {
    font-family: var(--rz-text-font-family);
    font-size: var(--rz-text-display-h5-font-size);
    line-height: var(--rz-text-display-h5-line-height);
    font-weight: var(--rz-text-display-h5-font-weight);
    letter-spacing: var(--rz-text-display-h5-letter-spacing);
    color: var(--rz-text-display-h5-color);
}

.report-table-item-line .indicator {
    background-color: #f3f5f7;
    border-radius: 5px;
    padding: 0px 5px 0px 5px;
}

.report-table-item-line .left {
}

.report-table-item-line .center {
}

.report-table-footer {
    padding: 0.5rem 1rem 0.5rem 1rem;
    background-color: white;
    border-radius: 5px;
    margin-top: 10px;
}

.rz-datalist-content {
    overflow: auto;
}

.rz-multiselect-item > span {
    width: 100%;
}

.print-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: var(--rz-layout-background-color);
    gap: 15px;
}

.print-wrapper {
    overflow-y: auto !important;
    grid-row-gap: 5px;
    grid-template-rows: auto auto;
}

.print-report {
    box-shadow: var(--rz-shadow-2);
}

.report-zoom-container {
    overflow: auto !important;
}

.report-grid-container {
    display: grid;
    /* Default: One column on small screens */
    grid-template-columns: 1fr;
    gap: 15px; /* Adds space between items */
}

.report-filter-date {
    cursor: pointer;
    padding: 5px 10px;
    width: 250px;
    align-items: center;
    text-transform: none;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.report-filter-button {
    font-size: 1rem;
}

.report-page-template {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding: 0.5rem;
    overflow:auto;
}

.report-widget-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.report-widget-container-5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width:100%;
}

.report-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    border-radius: 15px;
    padding: 1rem;
}

    .report-widget .widget-amount {
        font-size: 40px;
        font-weight: 500;
        line-height: 3rem;
    }

    .report-widget .widget-title {
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .report-widget .widget-percent {
        font-size: 16px;
        font-weight: 200;
    }

.report-global-search {
    height: 35px;
    font-size: 20px;
}

/* Desktop */
@media (min-width: 1200px) {
    .report-global-search {
        min-width: 350px;
    }
}
@media only screen and (min-width: 600px) {
    .report-widget-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .report-widget-container-5 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) {
    .report-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .report-widget-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .report-global-search {
        min-width: 250px;
    }

    .report-widget-container-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

.report-grid-table {
    border: none !important;
    padding: 0px;
}

.report-grid-table-footertemplate {
    /*padding: 0.5rem 0mm;*/
    font-size: 18px;
    font-weight: 600;
}

.report-graph-template {
    background-color: white;
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-page-emptymessage {
    margin: auto;
}

.data-filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: auto;
}
.report-grid-template{
    position:relative;
}
.report-list-template{
    display:flex;
    flex-direction:column;
}

.report-template-edit-settings {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 15px;
    right: 15px;
}
.report-template-edit{
    overflow:auto;
}
.report-template-column {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    background-color: var(--rz-body-background-color);
    justify-content:space-between;
}
