.bg-image {
    background-image: url("/static/base/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

/*
Size classes
*/
.maxw-500 { max-width: 500px; }

.card-title {
    font-size: 1.25rem;
    font-weight: 400;
}

.card-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
}

.aslink, .aslink:visited, .aslink:hover {
    text-decoration: none !important;
    color: #1976D2;
    cursor:pointer;
    font-size: 14px;
    font-weight:500;
    line-height:1.715em;
}
.aslink:hover {
    color: #31ccec;
}

.aslink-underline:hover {
    text-decoration: underline;
}

.table {
    width:100%;
    border-collapse: collapse;
    border-spacing: 0px;
}
.table td, .table th {
    border:0px;
    padding: 5px;
}

.table.border td, .table.border th {
    border:1px solid #ccc;
}

.table-sticky-header .q-table__top {
    background-color:#fff;
    z-index:2;
}

.table-sticky-header .q-table__middle table {
    position:relative;
}

.table-sticky-header .q-table__middle table thead {
    position:sticky;
    top:0px;
    z-index:2;
}
.table-sticky-header .q-table__middle table thead tr th{
    background-color:#fff;
}

.sticky-div {
  position: sticky;
  top: 0;
  background-color: white; /* Ensure the background is consistent */
  z-index: 1; /* Keep it above other content */
  padding: 8px; /* Adjust padding as needed */
}

.image-box {
    width: 120px;
    height: 120px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: visible;
    border-radius: 5px;
}

.img-box {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid rgb(255, 255, 255);
    z-index: 10;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
}

.cropper-container img {
    max-width: 100%;
}

.bnn-form-scroll {
        overflow-y: auto;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }
.bnn-form-scroll::-webkit-scrollbar {
    display: none;
}