 /*Table*/
 .sup-table-responsive {
   position: relative;
   width: 100%;
   min-height: 400px;
   overflow-x: auto;
 }

 .sup-table {
   position: relative;
   /* width: 100%;
   height: 100%; */
   /* min-height: 500px; */
   color: #495057;
   caption-side: bottom;
   border-collapse: collapse;
   vertical-align: top;
   border-color: #f6f6f6;
   overflow-x: auto;
   table-layout: auto;

 }

 .sup-table thead tr th {
   font-size: 13px;
   padding: 10px;
   text-align: left;
   color: #898989;
   background-color: #F4F4F4;
   font-weight: 400;

 }

 /* .sup-table thead {
   width: 100%;
   height: 60px;
   overflow-x: auto;
 } */

 td {
   width: 100%;
   text-align: left;
   padding: 10px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   font-family: 'Public Sans', serif;
   font-weight: 600;
   font-size: 13px;
   color: #202020;
 }

 tr:nth-child(even) {
   background-color: #F6F6F6;
 }

 .sup-view-merchant-details-btn {
   color: #5b73e8;
   font-size: 14px;
   cursor: pointer;
   font-family: 'Public Sans', serif;
   font-weight: 600;
   text-decoration: underline;
 }

 .sup-card {
   background: #fff;
   padding: 0;
   width: 100%;
   margin-top: 20px;
   min-height: 200px;
   border-radius: 8px;
   margin-bottom: 20px;
   position: relative;
   display: flex;
   flex-direction: column;
 }

 .fin-filter-btn {
   height: 35px;
   border: 1px solid #ECECEC;
   padding: 12px;
   border-radius: 4px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 2px;
   font-weight: 500;
   font-size: 12px;
   color: #202020;
   box-shadow: none;
   transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
 }

 .fin-card-title {
   font-size: 18px !important;
   font-weight: 400 !important;
   color: #202020;
   width: 500px;
   justify-items: space-between;
   align-items: center;


 }

 .fin-table {
   display: flex;
   flex-direction: column;
   width: 100%;
   /* border: 1px solid black; */
 }

 .fin-row {
   display: flex;
   width: 100%;
   height: 57px !important;
   color: #202020;
   font-size: 14px;
   font-weight: 500;
   padding: 8px 0px;
   align-items: center;
 }

 .fin-row:hover {
   cursor: pointer;
 }

 .fin-header {
   /* font-weight: bold; */
   background-color: #F4F4F4;
   color: #898989 !important;
   font-size: 13px;
   font-weight: 400 !important;
 }

 .fin-cell {
   flex: 1;
   /* Default column size */
   padding: 10px;
   /* border: 1px solid black; */
   text-align: left;
   white-space: nowrap;
   /* Prevent text wrapping */
   overflow: hidden;
   text-overflow: ellipsis;
   
 }

 /* Adjust first column size (smaller) */
 .fin-cell:first-child {
   flex: 0.25;
   margin-left: 4px;
   /* Smaller than default */
 }

 /* Adjust second column size (slightly larger) */

 .fin-cell-more-space{
  flex: 2 !important;
 }

 .fin-row:nth-child(odd) {
   background-color: #F4F4F4;
 }

 /* popover */
 .fin-container {
   position: relative;
   display: inline-block;
 }

 /* Download Button */
 .fin-download-button {
   cursor: pointer;
 }

 /* Popover */
 .fin-popover {
   position: absolute;
   top: 110%;
   /* Places it directly below the button */
   right: 0%;
   width: 360px;
   background: white;
   border: 1px solid #ddd;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   border-radius: 8px;
   display: block;
   /* Initially hidden */
   z-index: 1000;
 }

 /* Show popover when hovering over the container */
 .fin-container:hover .fin-popover {
   display: block;
 }

 /* Header */
 .fin-header {
   display: flex;
   justify-content: space-between;
   font-weight: bold;
 }

 .fin-close {
   border: none;
   background: none;
   font-size: 24px;
   cursor: pointer;
   font-weight: 100;
 }

 /* Content Styling */
 .fin-content {
   display: flex;
   flex-direction: column;
   gap: 4px;
   padding: 8px 16px 16px;
 }

 .fin-export-header {
   display: flex;
   justify-content: space-between;
   color: black;
   font-weight: 600;
   font-size: medium;
   padding: 10px 16px 8px 16px;
   align-items: center;
 }


 .fin-export-select {
   border: 1px solid #ECECEC;
   border-radius: 5px;
   padding: 4px;
   margin-bottom: 8px;
 }

 .fin-content-label {
   margin-bottom: 0px;
   font-weight: 500;
   font-size: 13px;
 }

 .fin-buttons {
   gap: 4px;
   display: flex;
   margin-bottom: 4px;
 }

 .fin-buttons button {
   border: 1px solid #ECECEC;
   padding: 4px 8px;
   border-radius: 4px;
   flex: 1;
   font-size: 12px;

 }

 .fin-date-wrapper {
   display: flex;
   gap: 4px;
 }

 .fin-date-wrapper input {
   width: 100%;
   border: 1px solid #ECECEC;
   padding: 4px 8px;
   border-radius: 4px;
   margin-bottom: 12px;

 }

 .fin-date-wrapper label {
   margin-bottom: 0px;
   font-size: 9px;
   color: #898989;
   font-weight: 400;


 }

 .fin-export {
   background-color: #2869D4;
   color: white;
   width: 100%;
   margin-top: 4px;
 }

 .fin-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.3);
   display: flex;
   align-items: center;
   justify-content: center;
   display: none;
   z-index: 50;
 }

 .fin-dialog {
   background: white;
   width: 450px;
   border-radius: 8px;

   box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
 }

 .fin-dialog-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 10px;
 }

 .fin-tabs {
   display: flex;
   border-bottom: 1px solid #ddd;
 }

 .fin-tab {
   flex: 1;
   text-align: center;
   padding: 6px 10px;
   cursor: pointer;
   font-size: 13px;
 }

 .fin-tab.active {
   color: #2869D4;
   border-bottom: 1px solid #2869D4;
 }

 .fin-upload-box {
   border: 2px dashed #ccc;
   text-align: center;
   padding: 20px;
   border-radius: 8px;
   margin: 2px 0;
 }

 .fin-upload-box input {
   display: none;
 }

 .fin-input-group {
   margin: 10px 0;
 }

 .fin-input-group label {
   margin-bottom: 0px;
   font-weight: 400;
   color: #687281;
   font-size: 12px;
 }

 .fin-input-group select,
 .fin-input-group input {
   width: 100%;
   background-color: #F4F4F4 !important;
   padding: 10px;
   border-right: 8px solid transparent !important;
   border: none;
   border-radius: 5px;
 }

 .fin-input-group input.fin-confirm {
   width: 100%;
   background-color: white !important;
   padding: 10px;
   /* border-right: 8px solid transparent !important; */
   border: 1px solid #ECECEC !important;
   border-radius: 5px;
 }

 .fin-button {
   width: 100%;
   padding: 12px;
   background: blue;
   color: white;
   border: none;
   border-radius: 5px;
   font-size: 16px;
   cursor: pointer;
   margin-top: 15px;
 }

 .fin-button:disabled {
   background: gray;
   cursor: not-allowed;
 }

 .fin-close {
   cursor: pointer;
   font-size: 20px;
 }

 .fin-upload-wrapper {
   margin-top: 6px;
   font-size: 12px;
 }

 .fin-upload-box label div {
   font-weight: 400;
   color: #687281;
 }

 .fin-upload-box label {
   margin-bottom: 0px;
 }

 .fin-upload-box label .fin-browse-button {
   border: 1px solid #ECECEC;
   padding: 4px 8px;
   border-radius: 4px;
   color: black;
   margin-top: 10px;
 }

 .fin-upload-box label .fin-browse-button:hover {
   cursor: pointer;

 }

 .fin-confirm {
   margin-bottom: 4px;
   margin-top: 2px;
 }

 .fin-secondary {
   background-color: #EBF3FF !important;
   color: #2869D4;
 }

 .fin-table-header {
   position: relative;
   width: 100%;
   margin-bottom: 5px;
   min-height: 60px;
   padding: 16px 12px;
   padding-bottom: 8px;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
 }

 .fin-tab-location {
   width: 100%;
   display: flex;
   justify-content: end;
   color: #9E9E9E;
   font-weight: 400;
 }


 /*Personal and Merchant switch buttons*/
 .fin-tab-switch {
   position: relative;
   /* width: 160px; */
   height: 40px;
   padding: 10px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   border: none;
   border-radius: 4px;
   gap: 10px;
   background-color: #F4F4F4;
 }

 .fin-tab-switch button {
   position: relative;
   /* height: 28px; */
   /* padding: 10px; */
   /* width: 66px; */
   padding: 6px 4px;
   font-family: 'Public Sans', serif;
   font-weight: 400px;
   font-size: 13px;
   color: #898989;
   transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
 }

 .fin-tab-switch button.active {
   background-color: #fff;
   border-radius: 4px;
   color: #202020;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 }

 .sup_tabs {
   border-bottom: 0px !important;
 }

 .sup_tab {
   padding: 0px 5px !important;
   height: 35px !important;
   line-height: 35px !important;
   margin-right: 0px;
 }

 .sup_tab a {
   font-size: 13px !important;

   line-height: 35px !important;
 }

 .fin-previous-button:hover{
  cursor: pointer;
  font-family: 'Public Sans', serif;
  font-weight: 600;
  text-decoration: underline;
}

.sup-card {
  background: #fff;
  padding: 0;
  width: 100%;
  margin-top: 20px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.fin-filter-btn {
  height: 35px;
  border: 1px solid #ECECEC;
  padding: 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-weight: 500;
  font-size: 12px;
  color: #202020;
  box-shadow: none;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.fin-card-title {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #202020;
  width: 500px;
  justify-items: space-between;
  align-items: center;


}

.fin-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* border: 1px solid black; */
}

.fin-row {
  display: flex;
  width: 100%;
  height: 57px !important;
  color: #202020;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0px;
  align-items: center;
}

.fin-row:hover {
  cursor: pointer;
}

.fin-header {
  /* font-weight: bold; */
  background-color: #F4F4F4;
  color: #898989 !important;
  font-size: 13px;
  font-weight: 400 !important;
}

.fin-cell {
  flex: 1;
  /* Default column size */
  padding: 10px;
  /* border: 1px solid black; */
  text-align: left;
  white-space: nowrap;
  /* Prevent text wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
  
}

/* Adjust first column size (smaller) */
.fin-cell:first-child {
  flex: 0.25;
  margin-left: 4px;
  /* Smaller than default */
}

/* Adjust second column size (slightly larger) */

.fin-cell-more-space{
 flex: 2 !important;
}

.fin-row:nth-child(odd) {
  background-color: #F4F4F4;
}

/* popover */
.fin-container {
  position: relative;
  display: inline-block;
}

/* Download Button */
.fin-download-button {
  cursor: pointer;
}

/* Popover */
.fin-popover {
  position: absolute;
  top: 110%;
  /* Places it directly below the button */
  right: 0%;
  width: 360px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: block;
  /* Initially hidden */
  z-index: 1000;
}

/* Show popover when hovering over the container */
.fin-container:hover .fin-popover {
  display: block;
}

/* Header */
.fin-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.fin-close {
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  font-weight: 100;
}

/* Content Styling */
.fin-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 16px;
}

.fin-export-header {
  display: flex;
  justify-content: space-between;
  color: black;
  font-weight: 600;
  font-size: medium;
  padding: 10px 16px 8px 16px;
  align-items: center;
}


.fin-export-select {
  border: 1px solid #ECECEC;
  border-radius: 5px;
  padding: 4px;
  margin-bottom: 8px;
}

.fin-content-label {
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 13px;
}

.fin-buttons {
  gap: 4px;
  display: flex;
  margin-bottom: 4px;
}

.fin-buttons button {
  border: 1px solid #ECECEC;
  padding: 4px 8px;
  border-radius: 4px;
  flex: 1;
  font-size: 12px;

}

.fin-date-wrapper {
  display: flex;
  gap: 4px;
}

.fin-date-wrapper input {
  width: 100%;
  border: 1px solid #ECECEC;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 12px;

}

.fin-date-wrapper label {
  margin-bottom: 0px;
  font-size: 9px;
  color: #898989;
  font-weight: 400;


}

.fin-export {
  background-color: #2869D4;
  color: white;
  width: 100%;
  margin-top: 4px;
}

.fin-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 50;
}

.fin-dialog {
  background: white;
  width: 450px;
  border-radius: 8px;

  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.fin-dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.fin-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.fin-tab {
  flex: 1;
  text-align: center;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 13px;
}

.fin-tab.active {
  color: #2869D4;
  border-bottom: 1px solid #2869D4;
}

.fin-upload-box {
  border: 2px dashed #ccc;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  margin: 2px 0;
}

.fin-upload-box input {
  display: none;
}

.fin-input-group {
  margin: 10px 0;
}

.fin-input-group label {
  margin-bottom: 0px;
  font-weight: 400;
  color: #687281;
  font-size: 12px;
}

.fin-input-group select,
.fin-input-group input {
  width: 100%;
  background-color: #F4F4F4 !important;
  padding: 10px;
  border-right: 8px solid transparent !important;
  border: none;
  border-radius: 5px;
}

.fin-input-group input.fin-confirm {
  width: 100%;
  background-color: white !important;
  padding: 10px;
  /* border-right: 8px solid transparent !important; */
  border: 1px solid #ECECEC !important;
  border-radius: 5px;
}

.fin-button {
  width: 100%;
  padding: 12px;
  background: blue;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}

.fin-button:disabled {
  background: gray;
  cursor: not-allowed;
}

.fin-close {
  cursor: pointer;
  font-size: 20px;
}

.fin-upload-wrapper {
  margin-top: 6px;
  font-size: 12px;
}

.fin-upload-box label div {
  font-weight: 400;
  color: #687281;
}

.fin-upload-box label {
  margin-bottom: 0px;
}

.fin-upload-box label .fin-browse-button {
  border: 1px solid #ECECEC;
  padding: 4px 8px;
  border-radius: 4px;
  color: black;
  margin-top: 10px;
}

.fin-upload-box label .fin-browse-button:hover {
  cursor: pointer;

}

.fin-confirm {
  margin-bottom: 4px;
  margin-top: 2px;
}

.fin-secondary {
  background-color: #EBF3FF !important;
  color: #2869D4;
}

.fin-table-header {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  min-height: 60px;
  padding: 16px 12px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.fin-tab-location {
  width: 100%;
  display: flex;
  justify-content: end;
  color: #9E9E9E;
  font-weight: 400;
}


/*Personal and Merchant switch buttons*/
.fin-tab-switch {
  position: relative;
  /* width: 160px; */
  height: 40px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  gap: 10px;
  background-color: #F4F4F4;
}

.fin-tab-switch button {
  position: relative;
  /* height: 28px; */
  /* padding: 10px; */
  /* width: 66px; */
  padding: 6px 4px;
  font-family: 'Public Sans', serif;
  font-weight: 400px;
  font-size: 13px;
  color: #898989;
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.fin-tab-switch button.active {
  background-color: #fff;
  border-radius: 4px;
  color: #202020;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.sup_tabs {
  border-bottom: 0px !important;
}

.sup_tab {
  padding: 0px 5px !important;
  height: 35px !important;
  line-height: 35px !important;
  margin-right: 0px;
}

.sup_tab a {
  font-size: 13px !important;

  line-height: 35px !important;
}

.fin-previous-button:hover{
 cursor: pointer;
}

.fin-row.white {
   background-color: white;
}

.green {
    background-color: #c6ffc0 !important
}

.red {
  color: #eb1f1f;
}

.green-c {
  color: #56891e;
}