.site-main {

}
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-main {
    flex: 1;
}
.scroll-pane {
    width: 100%;
    height: 400px;
    overflow: auto;

    /* Works on Firefox */
    scrollbar-width: 10px;
    scrollbar-color: #ccc #e8eaf6 ;
}

/* Works on Chrome, Edge, and Safari */
.scroll-pane::-webkit-scrollbar {
    width: 30px;
}

.scroll-pane::-webkit-scrollbar-track {
    background: #e8eaf6 ;
}

.scroll-pane::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 20px;
    border: 10px solid #e8eaf6 ;
}

.topbar-default {
    background-color: #eeeeee !important;
}

.site-logo {
    width: 250px !important;
}
.navbar-default {
    background-color: #1C2327 !important;
    padding: 10px 0 !important;
    background: url(../img/stegastiko-pattern.png) repeat center center;
    opacity: 1;
}
.main-navigation {
    padding-top: 50px;
}
table tr th {
    width: 25%;
    background-color: #eeeeee;
    font-weight: bold;
}

table td, table th {
    vertical-align: middle !important;
}

textarea::placeholder {
    font-size: 12px;
}

span.has-error {
    color: darkred;
    font-weight: bold;
    font-size: 12px;
}

span.buttonText {
    text-transform: none !important;
}

@media (min-width: 768px) {
    .user-navbar {
        padding: 0 !important;
        top: -40px !important;
    }
}


table.applications tr:first-child td {
    /*border-top: none;*/
}

.text-bold {
    font-weight: 900;
}

.modal {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}


select.input-lg, input.input-lg {
    height: 46px !important;
    line-height: 46px !important;
}

.btn-lg {
    height: 46px !important;
}

.pagination > li > a {
    /*line-height: 30px;*/
    /*width: 40px;*/
    /*margin: 0 5px !important;*/
}

td.digits {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.modal-lg {
    width: 1600px !important;
}

.w5 {
    width: 5%;
}
.w10 {
    width: 10%;
}
.w15 {
    width: 15%;
}
.w20 {
    width: 20%;
}
.table-fixed-header th {
    position: sticky;
    top: 0;
}

#details-content {
    overflow-y: auto;
    max-height: calc(100vh - 250px);
}



.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}
.card-wrapper .card {
    flex: 1; /* Equal width */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* optional for layout inside */
    padding: 1rem;
    background: #f2f2f2;
    border-radius: 8px;
}


a.disabled, a.disabled:hover {
    pointer-events: none;
    cursor: not-allowed !important;
}


span.loader {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}
span.loader::after,
span.loader::before {
    content: '';
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #3f3f3f;
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}
span.loader::after {
    animation-delay: 0ms;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.75);
        opacity: 0;
    }
}
