/*
HoofBeat custom CSS
*/

/*Task table styles*/
.priority-low {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;
}

td.priority-low:before {
    font-family: 'Material Design Icons';
    content: "\FD95";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin-right: 0.5rem!important;
}

.priority-normal {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;
}

td.priority-normal:before {
    font-family: 'Material Design Icons';
    content: "\F9A7";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin-right: 0.5rem!important;
}

.priority-high {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;
}

td.priority-highw:before {
    font-family: 'Material Design Icons';
    content: "\FD98";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin-right: 0.5rem!important;
}

.status-completed {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;
}

td.status-completed:before {
    font-family: 'Material Design Icons';
    content: "\FEC3";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin-right: 0.5rem!important;
}

.status-active {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;

}

td.status-active:before {
    font-family: 'Material Design Icons';
    content: "\F437";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.1em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
	margin-right: 0.5rem!important;
}
/*Required to use mdi icons int MudBlazor Tabs*/
span.mud-icon-root.mdi	{
line-height: 1em!important;
}

/*Required to use mdi icons int MudBlazor Tabs*/
.eszir_label mud-input-control-input-container.mud-input-label{
        font-size:0.85rem!important;
    }
/* Mud dialog position*/

.mud-dialog-container.mud-dialog-custom{
	display: flex;
	align-content: center!important;
	align-items: center;
	justify-content: space-between;
	justify-items: end;
	height: 100%;
	width: 85%;
}
/*Active Inactive DataGridStyles*/
.status-finalized {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;
}

td.status-finalized:before {
    font-family: 'Material Design Icons';
    content: "\FCA8";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
	margin-right: 0.5rem!important;
}

.status-open {
background-clip: content-box;
color: white!important;
border-radius: 20px;
font-size: 90%!important;
text-align: center!important;

}

td.status-open:before {
    font-family: 'Material Design Icons';
    content: "\F437";
    -webkit-font-feature-settings: 'liga';
	display: inline-block;
    padding: 0.1em 0.4em;
    font-size: 100%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
	margin-right: 0.5rem!important;
}

.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the container has a defined height */
}
.center-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the container has a defined height */
}
.header-profile-user-hb {
    position: relative;
    height: 36px;
    width: 36px;
    padding: 2px;
    border-radius: 50%;
    overflow: hidden;
}

.header-profile-user-hb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px; /* Adjust padding to control the border width */
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff); /* Adjust the gradient as needed */
    border-radius: 50%;
    mask: repeating-linear-gradient(45deg, transparent 0, transparent 10%, black 10%, black 20%);
    -webkit-mask: repeating-linear-gradient(45deg, transparent 0, transparent 10%, black 10%, black 20%);
}

.header-profile-user-hb img {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
