html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
   
}
.loadingonpage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 249, 249, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's above all other content */
}
.readonly-select {
    pointer-events: none; /* Disable mouse interaction */
    background-color: rgba(247, 249, 249, 0.5); /* Gray out background */
    cursor: not-allowed; /* Indicate non-interactive */
}
.readonly-div {
    pointer-events: none;
    opacity: 0.6; /* Optional, to give a "disabled" look */
    background-color: rgba(247, 249, 249, 0.5); /* Gives a greyed-out appearance */
    cursor: not-allowed; /* Visually indicates it can't be edited */
}

.readonly-div.is-disabled input,
.readonly-div.is-disabled select,
.readonly-div.is-disabled textarea {
    background-color: rgba(247, 249, 249, 0.5); /* Gives a greyed-out appearance */
    cursor: not-allowed; /* Indicates to the user that it can't be edited */
}

.godown-card_InView {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.godown-card_InView:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius:10px;
    /*background-color: #e6f7ff;*/ /* Light blue highlight */
}
.productlist-card_InView {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.productlist_InView:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: white; /* Light blue highlight */
}
.popover {
    background-color: #ffff !important; /* Light blue */
    border: 1px solid #0d6efd;
    box-shadow:inherit;
}

.popover-header {
    background-color: #A1E3F9 !important; /* Bootstrap Primary */
    color: white;
    font-weight: 500;
}

.popover-body {
    color: #808080;
}

@media print {
    .tabulator-responsive-collapse {
        display: none !important;
    }
}