﻿ 
.fixed-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full height of the viewport */
}

.scroll-content {
    flex-grow: 1;
    overflow: auto; /* Enables scrolling */
    padding: 16px;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    /*background: gray;*/
    padding: 16px;
    /*border-top: 1px solid #ddd;*/
    /*text-align: center;*/
    display: flex;
    justify-content: space-between; /* Pushes the buttons to the far edges */
    width: 100%;
}

.fixed-footer-left {
    position: fixed;
    bottom: 0;
    left:0;
    /*background: gray;*/
    padding: 16px;
    /*border-top: 1px solid #ddd;*/
    /*text-align: center;*/
    /*display: flex;
    justify-content: space-between;
    width: 100%;*/
}
.fixed-footer-right {
    position: fixed;
    bottom: 0;
    right: 0;
    /*background: gray;*/
    padding: 16px;
    /*border-top: 1px solid #ddd;*/
    /*text-align: center;*/
    /*display: flex;
    justify-content: space-between;*/ /* Pushes the buttons to the far edges */
    /*width: 100%;*/
}


.pagination-wide {
    display: flex;
    justify-content: space-between;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-striped {
    background: repeating-linear-gradient( 45deg, #ccc, #ccc 10px, #eee 10px, #eee 20px );
    color: white !important;
}

.my-input {
    border: 2px solid var(--mud-palette-primary);
    padding: 0.25rem;
    border-radius: 4px;
    /*font-size: 1rem;*/
    /*width: 100%;*/
}

.mud-progress-linear-buffer
.mud-progress-linear-bar:first-child {
    width: 100%;
    height: 100%;
    position: absolute;
    margin-top: 0;
    display: none !important;
}

.progress-with-endline {
    overflow: visible; /* allow marker to extend outside */
    position: relative; /* so children can position relative to this */
}

.progress-with-endline .mud-progress-linear-bar::after {
    content: "";
    position: absolute;
    right: 0;
    top: -8px; /* extend above */
    bottom: -8px; /* extend below */
    width: 2px; /* thickness of the marker */
    /*height: -8px;*/
    background-color: black;
}

.no-transition .mud-progress-linear-bar {
    transition: none !important;
}