body {
	font-family: Arial;
	color: #211a1a;
	font-size: 0.9em;
	overflow: hidden;	
}

#product-grid {
	margin: 10px;
}

.txt-heading {
	color: #211a1a;
	border-bottom: 1px solid #E0E0E0;
	overflow: auto;
}

#product-grid .txt-heading {
	margin-bottom: 18px;
}

.product-item {
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	float: left;
	background: #ffffff;
	margin: 30px 30px 0px 0px;
	border: #E0E0E0 1px solid;
	width:220px;
	height:240px;
}

.product-image {
	display:block;
	margin:auto;
	max-width:100px;
	height: 100px;
	background-color: #FFF;
}

.clear-float {
	clear: both;
}

.demo-input-box {
	border-radius: 2px;
	border: #CCC 1px solid;
	padding: 2px 1px;
}

.product-title {
	margin-bottom: 20px;
}

.product-price {
	font-weight: bold;
}

.product-tile-footer {
    padding: 15px 15px 0px 15px;
    overflow: auto;
}

.no-records {
	text-align: center;
	clear: both;
	margin: 38px 0px;
}
.vh-5 {
  position: fixed;
  top: 150;
  width: 150px;
  height: 200px;    
}
.vh-5a {
  position: fixed;
  top: 220;
  width: 16vw;
  height: 200px;    
}
.vh-25 {
  position: fixed;
  top: 0;
  min-height: 25vh;
  width: auto;
  overflow-y: auto;
  height: 200px;  
}
.vh-top {
  position: fixed;
  top: 0;
  width: auto;
}
.vh-70 {
  position: fixed;
  top: 80;
  width: calc(80vw);
  overflow-y: auto;
  height: 85%;  
  background-color: #f2f2f2;
  padding: 10px;		  
}
.vh-70a {
  position: fixed;
  top: 80;
  width: calc(80vw);
  height: 85%;  
  background-color: #f2f2f2;
  padding: 10px;		  
}
.wrap{
	display:flex;
}
.box{
	height: 150vh;
    width: 16vw;
}
.box2{
    width: 100vw;
}

ul.a {list-style-type: circle;}
ul.b {list-style-type: disc;}
ul.c {list-style-type: square;}
.bg1 {
	background-color: #eeeeee;
}


    .table-container {
        max-height: 300px; /* Set a maximum height for the scrollable area */
        overflow-y: auto; /* Enable vertical scrolling when content overflows */
        position: relative; /* Essential for sticky positioning within the container */
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th {
        position: sticky; /* Make the header cells sticky */
        top: 0; /* Stick to the top of the scrollable container */
        background-color: #f2f2f2; /* Add a background to prevent content showing through */
        z-index: 1; /* Ensure the header stays above the table body */
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    td {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }

thead {
  display: table; /* to take the same width as tr */
  width: calc(100% - 20px); /* - 17px because of the scrollbar width */
}

tbody {
  display: block; /* to enable vertical scrolling */
  max-height: 700px; /* e.g. */
  overflow-y: scroll; /* keeps the scrollbar even if it doesn't need it; display purpose */
}

#bgDiv {
  position: absolute; /* Allows positioning over other elements */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 9990; /* Ensures the popup is on top */
}

#popupDiv {
  position: absolute; /* Allows positioning over other elements */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the popup */
  width: 70vw;
  height: 45vw;
  background-color: white;
  border: 1px solid #333;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999; /* Ensures the popup is on top */
}

.hidden {
  display: none; /* Hides the popup by default */
}
.red-text {
    color: red;
}
.mark {
  background-color: yellow; /* Default yellow highlight */
  color: black;
}
.flex-search-input {
	padding: 10px;
	flex-grow: 1; /* Allows the input to take up available space */
}
.flex-search-button {
	padding: 10px 15px;
	background-color: #ffc107;
	color: black;
	border: none;
	cursor: pointer;
}

.tr5 {
  background-color: rgba(255, 0, 0, 0);
  vertical-align: middle;
  cursor:default;
  padding:1em 0; /*we increase the area*/
}

.tr5:hover {
  background-color: rgba(173, 216, 230, 0.5);
}

.accordion:hover {
    cursor:default;
	background-color: rgba(173, 216, 230, 0.5);
}
.panel {
    display: none;
}

.panel.show {
    display: block !important;
}