﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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;
    }
.text-responsive {
    font-size: calc(80% + 1vw + 1vh);
}

.fs-7 {
    font-size: 0.4rem !important;
}
.table td.fit,
.table th.fit {
    white-space: pre-wrap;
    width: 1%;
}
body {
    font: 16px;
    background: #f3f5f6;
}
table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}
a, button, input[type="button"], input[type="submit"], [role="button"] {
    cursor: pointer;
}

    a:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover, [role="button"]:hover {
        cursor: pointer;
    }

    a:active, button:active, input[type="button"]:active, input[type="submit"]:active, [role="button"]:active {
        cursor: pointer;
    }
*[onclick], *[onclick]:hover {
    cursor: pointer;
}

.tick-icon {
    content: "\2713"; /* Tick symbol */
}

.cancel-icon {
    content: "\2717"; /* Cancel symbol */
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}
/* Add this style to your component's CSS section or in a separate CSS file */

.edit-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeout-message {
    margin: 0;
    padding: 0;
    font-size: 14px; /* Adjust the font size as needed */
    color: #007bff; /* Use your desired color for the timeout message */
}
.wrap-td {
    max-width: 75px; /* Adjust the max-width as needed */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.yellow-row {
    background-color: lightyellow;
}