@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

* {
    border-collapse: collapse;
    box-sizing: border-box;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}


a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


#components-reconnect-modal {
/*    transition-property: visibility;
    transition-delay: 10000ms !important;*/
}

.vcenter {
    display: inline-flex;
    align-items: center;
}


.mdc-table th,
.mdc-table td {
    white-space: nowrap;
    max-width: 30%;
    text-overflow:ellipsis;
}

.mdc-table tr th:last-child,
.mdc-table tr td:last-child{
    max-width: unset;
}


.hover-select:hover,
.mdc-list-item:hover {
    background-color: var(--mdc-theme-primary, rgb(98 0 238 / 0.04));
    color: var(--mdc-theme-on-primary, #000000);
    cursor: pointer;
}


label.mdc-text-field.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) > input.mdc-text-field__input,
label.mdc-text-field--fullwidth-with-leading-icon:not(.mdc-text-field--textarea) > input.mdc-text-field__input {
    padding-top: 26px !important;
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: rgb(32, 102, 132);
}

.action-menu{
    position: relative;
}

.menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    border: 1px solid #e1e1e1;    
    border-top-width: 0;
    height: auto;
    z-index: 10000;
}

.menu-open {
    transition: all 0.5s;     
    opacity: 1;
    transform: scale(1);
}
.menu-closed {
    transition: all 0.2s;
    opacity: 0;
    transform: scale(.1);
    transform-origin: top left;
}