/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


/*Data Table Customization Start */
table.dataTable thead th {
    text-align: left;
}

.fixedHeader-floating th {
    text-align: left;
    /* padding: 10px !important; */
}

table.fixedHeader-floating {
    background-color: #DFE6F5;
}

table.dataTable td {
    padding-right: 5px;
}

    table.dataTable td + td {
        border-left: 1px solid #ddd;
    }

    table.dataTable td.nowrap {
        white-space: nowrap;
    }

table.dataTable th {
    white-space: nowrap;
}
.dataTables_wrapper label {
    width:100%;
}

.dataTables_info {
    padding-left:5px;
}

.dataTables_filter {
    margin-right:5px;
}
#innerContent button.dt-topButtons {
    background: #064AB5 !important;
    padding: 3px 10px 3px 10px !important;
    border: 1px solid #808080 !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    min-width: 40px !important;
    text-align: center;
    margin: 0px !important;
    line-height: normal !important;
}

    button.dt-topButtons:hover {
        background: #333 !important;
        color: #FFF !important;
    }
.dt-buttonContainer {
    text-align: center;
    margin: 20px 0px 10px 5px;
    width: 100%;
    display: block;
}
#innerContent div.dt-buttons {
    float:none;
    display:inline-block;
}

/*Data Table Customization End*/


/* Saving Notice - Used By Function showSavingOverlay in template.js Start */
/* Full-screen semi-transparent overlay */
#saving-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Centers spinner + text */
.overlay-content {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Classic CSS spinner */
.spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border: 6px solid #eee;
    border-top-color: #064AB5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* “Saved!” state: show check mark and fade out */
.saved-notice {
    display: block;
    margin-top: 0.75rem;
    font-size: 1.125rem;
    color: #28a745;
    /* pop and fade */
    animation: popfade 2s forwards;
}

@keyframes popfade {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    30% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}
/* Saving Notice - Used By Function showSavingOverlay in template.js End */