.login-container{
    border-radius: 20px;
    background: white;
    padding: 2rem;
}

.login-page{
    background-size: cover;
    background-image: url("/images/img.png");
    background-position: center;
}

tr.invalid {
    background-color: #fd69693d;
}

.primary{
    background-color: #0d4373;
    padding: 12px;
    color: white;
}

.primary .datepicker{
    color: white;
}

.primary .datepicker-container{
    color: #0d4373;
}

.primary .select-dropdown.dropdown-trigger{
    color: white;
}

.primary #search{
    color: white;
}

.sorting.sorting_asc:after{
    font-family: "Material Icons";
    content: '\e5d8';
}

.sorting.sorting_desc:after{
    font-family: "Material Icons";
    content: '\e5db';
}

.sorting:after{
    font-family: 'Material Icons';
    content: '\e8d5';
}

#progress-bar-container{
    width: 200px;
    height: 200px;
    font-size: 24px;
    position: relative;
    stroke-linecap: round;
    display: inline-block;
}

#progress-bar-container.rounded-bottom-edge {
    border-bottom-left-radius: 10px; /* Adjust the radius as needed */
    border-bottom-right-radius: 10px; /* Adjust the radius as needed */
}

.pagination-container {
    display: flex;
    justify-content: space-between; /* Align items to the left and center */
}

.pagination-info {
    text-align: center; /* Center the text within the container */
    position: relative; /* Make it a positioned container */
    margin: 12px;
}

.pagination-info p {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -50%);
}

.pagination {
    margin: auto; /* Center the item */
}

/*TODO: make a css script to rotate a element infinitely*/
/* Define the keyframes for the rotation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating-element{
    margin-top: 40px;
    margin-bottom: 40px;
}

.rotating-element .progressbar-text{
    display: none;
}

/* Apply the rotation when the class is added */
.rotating-element svg {
    animation: rotate 2s linear infinite; /* Adjust the duration and timing function as needed */
}

.info-badge {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: rgba(128, 128, 128, 0.67);
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    cursor: help;
    margin-left: 6px;
    content: '?';
    float: left;
    margin-right: 6px;
    transform: translate(0, 15%);
}

tbody.center-align > tr > td {
    text-align: center;
}

.date-range{
    display: flex;
}

.date-range > .input-field:last-child{
    margin-left: 10px;
}

.btn.block{
    width: 100%;
}

.btn.block .material-icons {
    float: left;
}

.import-documents-modal
{
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100% !important;
    overflow-y: auto;
    top: 0 !important;
}

.import-documents-modal table td:last-child{
    width: 24px;
}

tr.invalid
{
    border-top: 24px #f14e4e solid;
}

td.helper-text
{
    left: 0;
    right: 0;
    display: table-row;
    position: absolute;
    width: 100% !important;
    text-align: center;
    margin-top: -28px;
    padding: 6px;
    color: white;
}

.import-documents-modal table td:nth-child(7){
    width: 200px;
}

.import-documents-modal table td:nth-child(5){
    width: 225px;
}

.import-documents-modal table td:nth-child(4), .import-documents-modal table td:nth-child(3){
    width: 180px;
}

.import-documents-modal table td:first-child{

}

#notification-button{
    margin-left: 16px;
}

.notification-icon .material-icons {
    cursor: pointer;
}
/*Make the materializecss select larger for every parent containing the class notification-icon*/
.notification-icon .dropdown-content{
    width: 300px !important;
}

#import-documents-modal .autocomplete-content.dropdown-content{
    width: 250% !important;
}