.container-content {
    margin-left: 58px; /* Leave space for the sidebar */
    padding-top: 50px; /* Leave space for the navbar */
    padding-left: 11px;
    padding-right: 20px;
    padding-bottom: 20px;
    background: #F5F5F5;
    min-height: 100vh; /* Ensure content area covers full height */
}
.content-title-block{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    align-items: center;
     justify-content: space-between;
}
.title-block{
    color: #667085;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0px;
    padding-top: 5px;
    text-decoration: none;
}
.title-home-icon{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.title-arrow-icon{
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.bg-primary-color{
    --bs-bg-opacity: 1;
    background-color: #00517B !important;

}

.card-header {
    padding: 15px 20px !important;  /* Adjust this to reduce the padding and minimize header height */
    margin: 0; /* Ensure there's no margin */
    display: flex; /* Use flexbox to align items in a row */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space out the title and the close button */
    border: none !important;

  }
.card-b-buttom {
        background-color: #D9D9D9;
        height: 2px;
        width: 97%;
        text-align: center;
        justify-self: center;
        margin: auto;
        margin-bottom: 2%;
  }

  .card-header .card-title {
    margin: 0; /* Ensure no margin on the title */
    padding: 0; /* Ensure no padding on the title */
  }

  .card-header img{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .card-header-txt-container{
    display: flex;
    align-items: center;
    padding: 0px 25px;
  }

  .prod-header-elements{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .card-title {
    color: #174F6B !important; /* Blue color */
    font-family: 'Poppins', sans-serif; /* Font family */
    font-size: 20px; /* Font size */
    font-style: normal; /* Font style */
    font-weight: 700; /* Font weight */
    line-height: 28px; /* Line height */
  }


.card-container{
  border-radius: 6px;
  border: 0.6px solid #FFF;
  background: #FFF;
  padding: 5px 10px 10px 10px;
  /*max-height: 1200px;*/
    /*height: 690px;*/
}





/*###############################################
                     Table styling
################################################*/



table.dataTable td, table.dataTable th {
  -webkit-box-sizing: border-box !important; /* Change to border-box */
  box-sizing: border-box !important; /* Change to border-box */
}





.custom-table {
  border-collapse: collapse ;
  border-spacing: 0 ; /* Avoids border overlap */
  width: 100% !important; /* Adjusts to full width */
  margin-top: 20px ; /* Adds spacing from other elements */
  table-layout: auto ;
  position: sticky ;
  top: 0 ;
  z-index: 2 ;
}






.custom-table thead th {
  border-left: 0.5px solid #D9D9D9;
  background-color: #F5F5F5;
  color: #667085;
  height: 44px;
  padding: 12px 24px 12px 15px;
  justify-content: space-between;
  align-items: center;

  padding-right: 20px;

  /* Typography */
  font-family: 'Inter', sans-serif; /* Ensure you import the Inter font */
  font-size: 12px;
  font-weight: 500; /* Medium */
  font-style: normal;
  line-height: 18px; /* 150% line height */
  text-align: left; /* Aligns text to the left */
  padding: 10px; /* Adjust padding for better spacing */
  position: sticky;
  top: 0;
  z-index: 2;

}

.custom-table .filter-row-catalog,
.custom-table .filter-row,
.custom-table .filter-row-category,
.custom-table .filter-row-subcategory {
  position: sticky;
  top: 83px; /* Adjust based on header height */
  background-color: #F5F5F5;
  z-index: 1;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); /* Adds subtle shadow for separation */
   
}

/*
.custom-table .fix-row-tbl {
  position: sticky;
  top: 40px; 
  background-color: #F5F5F5;
  z-index: 1;
}

.custom-table tbody td, .custom-table tbody th {
  vertical-align: middle;
  height: 64px;
  padding: 12px 15px;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  border: 1px solid #EAECF0;


  max-width: 100px;         
  white-space: normal;      
  word-wrap: break-word;      
  overflow-wrap: break-word; 

}
.custom-table tbody td {
  color: #101828; 


  font-family: 'Poppins', sans-serif;  
  font-size: 12px;  
  font-style: normal;
  font-weight: 500;  
  line-height: 20px;  
}

.custom-table tbody tr {
  border-bottom: 1px solid #EAECF0; 
}

*/

/* Custom Checkbox Styling */
.custom-checkbox {
  appearance: none; /* Remove default styling */
  width: 15px;
  height: 15px;
  border-radius: 2px; /* Slight rounding */
  border: 1px solid #D9D9D9; /* Default border color */
  background-color: white; /* Ensure the background stays white */
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Checked State: Change border and show checkmark */
.custom-checkbox:checked {
  border-color: #03A1AA; /* Change the border color when checked */
  background-color: white; /* Keep background white */
}

/* Checkmark using ::after */
.custom-checkbox:checked::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid #03A1AA; /* Color of the checkmark */
  border-width: 0 2px 2px 0;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(45deg); /* Centers and rotates the checkmark */
}



.delete-icon-btn{
  background:none; 
  border:none; padding:0; 
  margin:0; 
  cursor:pointer;
}

 

 

/* Style the dataTables length select dropdown */
.dataTables_length label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #101828;
  align-items: center;
  gap: 5px;
}

/* Style the DataTables length select dropdown */
.dataTables_length select {
  width: 50% !important; /* Adjust width */
  border: none !important; /* Remove border */
  background-color: #FFF !important; /* White background */
  color: #101828 !important; /* Text color */
  font-family: 'Poppins', sans-serif !important; /* Font styling */
  font-size: 12px !important; /* Font size */
  cursor: pointer !important; /* Show pointer on hover */
  appearance: none; /* Remove default select styling */

  /* Custom arrow */
  background-image: url('../images/down-arrow-blue-icon.svg');
  background-repeat: no-repeat;
  background-position: right 10px center; /* Position custom arrow */
  background-size: 12px; /* Size of the arrow */
}

/* Remove default arrow in select dropdown for IE */
.dataTables_length select::-ms-expand {
  display: none; /* Remove default arrow for Internet Explorer */
}

/* Remove the blue focus border (for Chrome and other browsers) */
.dataTables_length select:focus {
  outline: none !important; /* Ensure outline is removed on focus */
  box-shadow: none !important; /* Remove any browser-specific focus border */
}

/* Remove the border on hover */
.dataTables_length select:hover {
  border: none !important; /* No border on hover */
  box-shadow: none !important; /* No shadow on hover */
}




.pagination-pages-categories{
  display: flex;
  }
/* Pagination button styles */
.pagination-pages-categories  button {
  padding: 5px 12px; /* Adjust padding */
  color: #333;
  background-color: transparent; /* Remove button background */
  border: none; /* Remove button border */
  outline: none !important; /* Remove default focus outline */
  box-shadow: none !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  height: 34px; /* Match the height of the other elements */
  display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0; /* Ensure no extra margin is applied */

}

.pagination-pages-categories button.active {
  background-color: transparent; /* Remove button background */
  color: #00517B; /* Change text color to blue */
  font-weight: bold; /* Optional: make active text bold */
  margin-bottom: 2px;
  height: 32px;
}

/* Hover effect on pagination buttons */
.pagination-pages-categories button:hover {
  background-color: transparent;

}
.pagination-pages-subcategories{
  display: flex;
  }
/* Pagination button styles */
.pagination-pages-subcategories  button {
  padding: 5px 12px; /* Adjust padding */
  color: #333;
  background-color: transparent; /* Remove button background */
  border: none; /* Remove button border */
  outline: none !important; /* Remove default focus outline */
  box-shadow: none !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  height: 34px; /* Match the height of the other elements */
  display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0; /* Ensure no extra margin is applied */

}

.pagination-pages-subcategories button.active {
  background-color: transparent; /* Remove button background */
  color: #00517B; /* Change text color to blue */
  font-weight: bold; /* Optional: make active text bold */
  margin-bottom: 2px;
  height: 32px;
}

/* Hover effect on pagination buttons */
.pagination-pages-subcategories button:hover {
  background-color: transparent;

}

/* Custom styling for DataTables search bar */
.dataTables_filter input {
  width: 250px; /* Adjust search input width */
  padding: 5px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
}



/* Custom pagination buttons */
.dataTables_paginate .pagination .page-item .page-link  {
  padding: 5px 12px; /* Adjust padding */
  color: #333;
  background-color: transparent; /* Remove button background */
  border: none; /* Remove button border */
  outline: none !important; /* Remove default focus outline */
  box-shadow: none !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  height: 34px; /* Match the height of the other elements */
  display: flex;
  align-items: center;
  justify-content: center;
}

.dataTables_paginate .pagination .page-item .page-link:focus {
  outline: none !important; /* Remove the blue border on focus */
  box-shadow: none !important;
}
/* Active page styling */
.dataTables_paginate .pagination .page-item.active .page-link {
  background-color: transparent; /* Remove button background */
  color: #00517B; /* Change text color to blue */
  font-weight: bold; /* Optional: make active text bold */
  margin-bottom: 2px;
  height: 32px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap; /* Allows tags to wrap onto new lines */
  max-width: 100%; /* Ensures the content stays within the <td> width */
  gap: 8px; /* Adds space between tags */
}
.primary-tag-table {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 16px;
  background: rgba(3, 161, 170, 0.10);;
  width: fit-content;
  position: relative;
  transition: background-color 0.3s ease;
}

/* Label styles */
.primary-tag-table label {
  color: #00517B;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  transition: color 0.3s ease;
}
.primary-tag-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 16px;
  background: rgba(3, 161, 170, 0.10);;
  width: fit-content;
  position: relative;
  transition: background-color 0.3s ease;
}

/* Label styles */
.primary-tag-item label {
  color: #00517B;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  transition: color 0.3s ease;
}

.primary-tag-item img{
  width: 15.5px;
  height: 15.5px;
}

.add-file-tag-item{
  display: flex;
  padding: 2px 8px 2px 6px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 16px;
  background: #FFF;
  width: fit-content;
  border: #00517B 1px solid;
  cursor: pointer;
}

.add-file-tag-item label{
  color: #00517B;
  text-align: center;

  /* Text xs/Medium */
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  cursor: pointer;
}
.add-file-tag-item img{
  width: 15.5px;
  height: 15.5px;
  cursor: pointer;
}
.file-tag-item {
  display: flex;
  padding: 2px 8px 2px 6px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 16px;
  background: #D9D9D9;
  width: fit-content;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
}

.file-tag-item label {
  color: #00517B;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px; /* 150% */
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.file-tag-item img {
  width: 15.5px;
  height: 15.5px;
  transition: opacity 0.3s ease; /* Smooth transition for the icon */
}

/* Hover effect for the entire item */
.file-tag-item:hover  {
  background-color: #EE776A;
}
.file-tag-item:active  {
  background-color: #EE776A;
}
.bill-tag-removal.active{
 background-color: #EE776A;
}
.file-tag-item:hover label {
  color: #FFF; /* Change text color on hover */
}

/* To swap the icon on hover, use a data attribute approach */
/*.file-tag-item:hover img {
  content: url('../images/delete_forever.svg');
}
*/
.show-page .file-tag-item:hover {
  cursor: pointer;
}
/* Hover effect on the entire item */
.primary-tag-item:hover {
  background-color: #EE776A;
}

/* Change label color on hover */
.primary-tag-item:hover label {
  color: #FFF;
}

/* Add the delete icon dynamically before the text */
.primary-tag-item::before {
  content: '';
  display: none;

  width: 17.5px;  /* Custom width */
  height: 17.5px; /* Custom height */
  background-image: url('../images/delete_forever.svg'); /* Use background image */
  background-size: contain; /* Ensure image fits the size */
  background-repeat: no-repeat; /* Avoid repeating */
  background-position: center; /* Center the image */
}

/* Show the delete icon on hover */
.primary-tag-item:hover::before {
  display: inline-block; /* Make the icon visible */

}

/* Adjust existing image on hover */
.primary-tag-item img {
  transition: opacity 0.3s ease;
}

.primary-tag-item:hover img {
  opacity: 0; /* Hide the original icon */
}



.quantity-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.quantity-counter .input-number {

  display: flex;
  width: 114px;
  height: 25px;
  padding: 6px 8px 5px 6px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #00517B; /* Text color */
  border: 1px solid #ced4da; /* Bootstrap default border */
  border-left: none;
  border-right: none;
  text-align: center;
}

.quantity-counter .btn-number {
  appearance: none;
  padding: 0 !important;
  height: 25px;
  width: 25px; /* Button size */
  background-color: #f8f9fa; /* Light background */
  border: 1px solid #ced4da; /* Match input field border */
  color: #667085;
  text-align: center;
  font-family: "Segoe UI";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;

}



.radius-right{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.radius-left{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.quantity-counter .btn-number:hover {
  background-color: #e2e6ea; /* Hover effect */
}

.quantity-counter .input-group-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ########## cart styling ############### */




.product-view {
  margin: 5px 15px 5px 15px;
}

.product-item-list-cart{
  width: 100%;
  height: 82px;
  flex-shrink: 0;
  border-bottom: 0.5px solid #D9D9D9;
  background: #FFF;
  display: flex;
  align-items: center;
  padding: 11px 11px 11px 30px;
}
.product-item-list-cart .prod-list-title-cart{
  color: #00517B;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 116.667% */
  margin: 0;
}

.product-item-list-head-cart{

  padding: 2px 10px 2px 30px;
}
.product-item-list-head-cart .product-head-title-cart{
 width: 40%;
 padding-left: 90px;
}
.product-item-list-head-cart .product-head-brand-cart{
 width: 20%;
}
.product-item-list-head-cart .product-head-sku-cart{
 width: 20%;
 display: flex;
 align-items: center;
 justify-content: center;

}

.prod-details-box-cart{
  width: 40%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.prod-details-box-cart .prod-img-list{
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.prod-brand-box-cart{
  width: 20%;
  display: flex;
  align-items: center;

  gap: 10px;
}

.prod-sku-box-cart{
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.text-danger {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.file-tag-container{
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-tag-container-attachment{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}


  /* ########################## Modal styling ############################### */

.largeModal .modal-dialog {
  --bs-modal-width: 80% !important; /* Override Bootstrap's default width */
  width: 80% !important; /* Ensure the modal width is fixed */
}

@media (min-width: 576px) {
  .modal-dialog {
      max-width: 80% !important;
      margin: 1.75rem auto;
  }
}

.modal-dialog-delete-product{
  --bs-modal-width: 80%; /* Override Bootstrap's default width */
  width: 80%; /* Ensure the modal width is fixed */
}

.modal-content {
  max-height: 710px ; /* Maximum height */
  border-radius: 6px;
  border: 0.6px solid #FFF;
  background-color: #FFF;

}
.modal-delete-product-content {
  max-height: 300px; /* Maximum height */
  border-radius: 6px;
  border: 0.6px solid #FFF;
  background-color: #FFF;
  width: 100%;
  position: relative;
    display: flex;
    flex-direction: column;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);


}

.modal-title {
  color: #174F6B; /* Blue color */
  font-family: 'Poppins', sans-serif; /* Font family */
  font-size: 20px; /* Font size */
  font-style: normal; /* Font style */
  font-weight: 700; /* Font weight */
  line-height: 28px; /* Line height */
}

.modal-header {
  padding: 5px 20px !important;  /* Adjust this to reduce the padding and minimize header height */
  margin: 0; /* Ensure there's no margin */
  display: flex; /* Use flexbox to align items in a row */
  align-items: center; /* Vertically center items */
  justify-content: space-between; /* Space out the title and the close button */
}

.modal-header .modal-title {
  margin: 0; /* Ensure no margin on the title */
  padding: 0; /* Ensure no padding on the title */
}

.modal-header .btn-close {
  margin: 0; /* Reduce margin around close button */
  padding: 0; /* Ensure no extra padding on close button */
}

.modal-header img{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 8px;
}

.modal-header-txt-container{
  display: flex;
align-items: center;
}


.custom-close-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: -16px; /* Adjust to make sure it is visible */
  right: 5px; /* Adjust to place the close button to the right */

}

.custom-close-btn img{
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.custom-close-btn-delete {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: -18px;
  right: 5px;
  cursor: pointer !important;

}

.close-mdl-icon{
  width: 34px !important;
  height: 34px !important;
  flex-shrink: 0;
  cursor: pointer !important;
}

.custom-input {
  border-radius: 8px;
  border: 1px solid var(--Input-border-color, #D2D5DA);
  background: #FFF;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  height: 46px;
  flex-shrink: 0;
  width: 100%; /* Make inputs take full width of their container */
  padding-left: 16px;
  padding-right: 16px !important;

  /* Text styling */
  color: #6C727F;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

.custom-input:focus {
  outline: none; /* Remove the default outline */
  border-color: rgba(23, 79, 107, 1); /* Change the border color when focused */
}


/* Placeholder styling */
.custom-input::placeholder {
  color: #6C727F; /* Same color as input text */
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

/* Add padding to the modal body */
.modal-body {
  padding-left: 50px !important;
  padding-right: 50px !important;
  margin-bottom: 20px;

}
.modal-body-table {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 20px;
  /* overflow-y: scroll; */

}
   .modal-body-table::-webkit-scrollbar{
      display: none;
  }

.custom-label {
  color: var(--Blue, #174F6B);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  position: absolute;
  top: -7px; /* Adjust to move the label above the input */
  left: 16px; /* Aligns the label with the input padding */
  background-color: white; /* Ensure the label background is white */
  padding: 0 5px; /* Small padding to avoid overlap with input border */
  z-index: 1; /* Make sure the label is above the input */
}

.margin-input-40{
  margin-bottom: 40px!important;
}
.txt-danger{
  color: #EE776A;
}

.custom-select-pagination {

  border: none;
  background-color: #FFF;
  height: 25px;
  width: 60%;
  padding-left: 16px;
  padding-right: 40px; /* Add padding to make space for the arrow */
  color: #6C727F;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  appearance: none; /* Remove default arrow styling */
  background-image: url('../images/down-arrow-blue-icon.svg'); /* Path to custom arrow icon */
  background-repeat: no-repeat;
  background-position: right 16px center; /* Position custom arrow */
  background-size: 18px 18px; /* Size the custom arrow */
}

.custom-select {
  border-radius: 8px;
  border: 1px solid var(--Input-border-color, #D2D5DA);
  background-color: #FFF;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  height: 46px;
  width: 100%;
  padding-left: 16px;
  padding-right: 40px; /* Add padding to make space for the arrow */
  color: #6C727F;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  appearance: none; /* Remove default arrow styling */
  background-image: url('../images/down-arrow-blue-icon.svg'); /* Path to custom arrow icon */
  background-repeat: no-repeat;
  background-position: right 16px center; /* Position custom arrow */
  background-size: 18px 18px; /* Size the custom arrow */
}

/* Change border color when select is focused */
.custom-select:focus {
  outline: none;
  border-color: rgba(23, 79, 107, 1);
}
.custom-select-pagination:focus {
  outline: none;
  border-color: rgba(23, 79, 107, 1);
}

/* Change the arrow color to blue using a pseudo-element */
.custom-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  background-color:  rgba(23, 79, 107, 1);/* Change the arrow color */
  transform: translateY(-50%);
}
.custom-select-pagination::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  background-color:  rgba(23, 79, 107, 1);/* Change the arrow color */
  transform: translateY(-50%);
}
.custom-search-select {
  border-radius: 8px;
  border: 0px solid var(--Input-border-color, #D2D5DA);
  background-color: #FFF;
  height: 38px;
  width: 220px !important;
  padding-left: 16px;
  padding-right: 40px; /* Add padding to make space for the arrow */
  color: #6C727F;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  appearance: none; /* Remove default arrow styling */
  background-image: url('../images/down-arrow-blue-icon.svg'); /* Path to custom arrow icon */
  background-repeat: no-repeat;
  background-position: right 16px center; /* Position custom arrow */
  background-size: 18px 18px; /* Size the custom arrow */
}

/* Change border color when select is focused */
.custom-search-select:focus {
  outline: none;
  border-color: rgba(23, 79, 107, 1);
}

/* Change the arrow color to blue using a pseudo-element */
.custom-search-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  background-color:  rgba(23, 79, 107, 1);/* Change the arrow color */
  transform: translateY(-50%);
}


.error-message {
  font-size: 12px;    /* Small font size */
  color: red;          /* Red color for error */
  margin-top: 5px;     /* Spacing from the input field */
  font-weight: normal; /* Ensure it's not bold */
}



/* Center the pagination and style settings dropdown */
.custom-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;

}

/* Style for pagination settings (gear icon + popup) */
.pagination-settings {
  position: relative;
}

.settings-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
}


/* Updated CSS for the line-count-popup with color adjustments */
.line-count-popup {
  display: none;
  /* Initially hidden */
  position: absolute;
  bottom: 35px;
  /* Popup above the icon */
  left: -30px;
  background-color: white;
  padding: 10px;
  border: 1px solid #00517B;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 150px;
}

.line-count-popup label {
  color: #00517B;
}

.line-count-selector {
  border: 1px solid rgb(0, 81, 123, 0.4);
  color: #00517B;
  padding: 5px;
  border-radius: 4px;
}

.line-count-selector:focus {
  border-color: #00517B;
  outline: none;
}

/* Optional: hover effect for the dropdown */
.line-count-selector:hover {
  border-color: #003A5B;
}



.add-btn-dataTable-row {
  background-color: transparent;
  /* Transparent background */
  color: #00517B;
  /* White text color */
  font-weight: bold;
  border: none;
  /* Remove border */
  display: flex;
  align-items: center;
  /* Align icon and text vertically */
  justify-content: center;
  /* Center icon and text horizontally */
  font-size: 14px;
  /* Set font size */
  border-radius: 5px;
  /* Rounded corners */
  cursor: pointer;
  width: 100%;
  /* Take full width of parent */
  box-sizing: border-box;
  /* Ensure padding is included in width */
}


/*.table-wrapper {
  max-height: 560px; 
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin; 
  scrollbar-color: #00517B #f1f1f1; 
}
*/
 
 
.mdl-delete-txt-block{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.mdl-delete-txt{
  margin: 0px;
  color: #667085;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.delete-mdl-btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.yes-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #03A1AA;
  padding: 15px;
  border-radius: 8px;
  color: #FFF;
  width: 130px;
  height: 30px;
  cursor: pointer;
}
.yes-btn a{
  text-decoration: none;
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.white-check-icon{
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.no-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #EE776A;
  padding: 15px;
  border-radius: 8px;
  color: #FFF;
  width: 130px;
  height: 30px;
  cursor: pointer;
}
.no-btn a{
  text-decoration: none;
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.close-small-white-icon{
  height: 18px;
  width: 18px;
  cursor: pointer;
}

.mdl-delete-content{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding: 25px 25px 0px 25px;
  
}

.scrollable-div {
            overflow-y: auto;
            /* Enable vertical scrolling */
            max-height: 70vh;
}
