@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

/* Light Theme (Default) */
:root {
  --background: #ffffff;
  --foreground: #171717;
  --brandColor: #163a75;
  --purpleColor: #7e57c2;
  --darkGreen: #002b33;
  --bgColor: #f8fbff;
  /* Add transitions here */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* Light Theme (Default) */
:root {
  --primary-bg: #f7f7fb;
  --secondary-bg: #fff;
  --text-color: #171717;
  --heading-color: #0d0d54;
  --border-color: rgba(0, 0, 0, 0.2);
  --sidebar-btn-hover-bg: #f7f7fb;
  --sidebar-active-border: #4040f2;
  --sidebar-icon-fill: #4040f2;
  --link-color: #555;
  --link-hover: #0a2f66;
  --footer-bg: #0a2f66;
  --bottom-bar-bg: #002b33;
  --icon-bg: #0a2f66;
  --icon-hover-bg: #004080;

  --intro-text: #4b5563;
  --light: #ececec;
  --border-bottom-input: #e1e1e2;
  --white-transperant: #ffffffaf;
  --white-light-transperant: #ffffff75;
  --dark-blue-transperant: #001e4b80;

  --secureDataImage: url("/SecureData1.gif");
  --box-dark-color: #1e3181;
  --box-dark-color2: #1e3181;
  /* Add transitions here */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Dark Theme */
.dark {
  --primary-bg: #37374d;
  --secondary-bg: #2a2a3b;
  --text-color: #ededed;
  --heading-color: #c9c9ff;
  --border-color: rgba(255, 255, 255, 0.2);
  --sidebar-btn-hover-bg: #2a2a3b;
  --sidebar-active-border: #8585f2;
  --sidebar-icon-fill: #8585f2;
  --link-color: #bbbbbb;
  --link-hover: #8aaaff;
  --footer-bg: #171725;
  --bottom-bar-bg: #10101a;
  --icon-bg: #8585f2;
  --icon-hover-bg: #5a5af2;

  --intro-text: #9c9c9c;
  --border-bottom-input: #4b4b4b;
  --white-transperant: #0000006e;
  --white-light-transperant: #00000094;
  --dark-blue-transperant: #00143379;
  --secureDataImage: url("/SecureData2.png");
  --box-dark-color: #737389;
  --box-dark-color2: #ceced5;

  /* Add transitions here */
}

:root {
  color-scheme: light;
}

[data-theme="dark"] {
  color-scheme: dark;

  /* Add transitions here */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* body{
  background-color: var(--secondary-bg) !important;
}

main{
  background-color: var(--secondary-bg) !important;
} */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
.formWrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: white;
  width: 70%;
  max-height: 68vh !important;
  overflow-y: auto;
  padding: 4.375rem 12.5rem;
  border: 1px solid #030637;
  border-radius: 0.75rem;
}
.aboutSection {
  background-color: #fff;
}
.topBar {
  background-color: #ffffff;
  color: #000000;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.toggleBtn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: inherit;
}

.fontSizeBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 18px;
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
} */

* {
  font-family: "Nunito", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------------google traslater css------------- */
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none;
  top: 0px !important;
}
[class*="geist_"][style] {
  top: unset !important;
}
.goog-te-gadget-simple {
  background-color: transparent !important;
  color: #fff !important;
  font-size: 16px !important;
  border: none !important;
  padding: 0px !important;
}
.goog-te-gadget-simple > span > a :nth-child(1) {
  color: #000 !important;
}
.goog-te-gadget-simple > span > a :nth-child(2) {
  display: none;
}
.goog-te-gadget-simple > span > a :nth-child(3) {
  display: none;
}
.goog-te-gadget-simple > span > a :nth-child(4) {
  display: none;
}
.goog-te-gadget-simple > span > a :nth-child(5) {
  margin-left: 10px;
  font-size: 14px;
  color: #000 !important;
}
.goog-te-gadget-simple > img {
  display: none;
}

html,
body {
  max-width: 100vw;
  /* overflow-x: hidden; */
  /* background-color: rgb(141, 170, 202); */
}

body {
  color: var(--foreground);
  background: var(--bgColor);
  font-family: Arial, Helvetica, sans-serif;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.header {
  background-color: var(--background);
  color: var(--foreground);
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Additional Theme Styling */
a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* @media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
} */

/*   ------------- Page Wrapper css ------------ */
.pageWrapper {
  margin: 40px;
}
.custom-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/*   ------------- card Wrapper css ------------ */
.cardWrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: rgba(17, 17, 26, 0.08) 0px 0px 16px;
}

/*   ------------- formHeaderWrapper css ------------ */
.formHeaderWrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: rgba(17, 17, 26, 0.08) 0px 0px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.formHeaderWrapper > :nth-child(1) {
  color: rgba(0, 0, 0, 0.7);
}

.formHeaderWrapper > :nth-child(2) {
  font-weight: 800;
}
.formHeaderWrapper > :nth-child(3) {
  color: rgba(0, 0, 0, 0.5);
}

/* ---------------gridWrapper css --------- */
.gridWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

/* Two column grid */
.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

/* Dynamic Input CSS */

.inputRow {
  display: flex;
  align-items: flex-start; /* Align inputs and button at the bottom */
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: nowrap; /* Prevent items from wrapping */
}

.inputRow .removeButton {
  height: 40px; /* Adjust height to match input fields */
  align-self: center; /* Align button with inputs */
  background-color: rgb(230, 42, 42);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.inputRow .removeButton:hover {
  background-color: darkred;
}

.inputRow > div {
  flex: 1 1; /* Ensures inputs take equal space */
}

/* ---------- React Select Css ---------- */

.css-1u9des2-indicatorSeparator {
  display: none;
}

.css-1xc3v61-indicatorContainer > svg {
  fill: rgb(72, 72, 72);
}

/* -----------text css------------- */
.small-heading {
  font-weight: 600;
  margin-bottom: 5px;
}

.warning-text {
  color: orange !important;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-heading {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: var(--kt-accordion-button-active-color, #888); /* Fallback color added */
  border-radius: 10px;
}

/* Scrollbar track (the background) */
::-webkit-scrollbar-track {
  background: #e0e6eb;
  box-shadow: inset 3px 3px 6px rgba(183, 197, 210, 1), inset -3px -3px 6px rgba(255, 255, 255, 0.5);
}

/* -----------------table css -------------------- */
.text-center {
  text-align: center;
}
.title {
  font-size: 1.5rem;
  color: #0d0d54;
  font-weight: 700;
}
.mainWrapper {
  padding: 15px 20px;
  border-radius: 15px;
  background-color: #ffffff;
  width: 100%;
  overflow: auto;
  /* height: 80vh; */
  box-shadow: rgba(99, 99, 99, 0.04) 0px 2px 8px 0px;
}
.status {
  color: #8a8cd9;
}
.tableWrapper {
  background-color: #ffffff;
  width: 100%;
  overflow: auto;
  /* height: 55vh; */
}

.tableWrapper > table {
  width: 100%;
  font-size: 0.875rem;
  table-layout: fixed;
}

.tableWrapper > table td {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tableWrapper > table > thead {
  width: 100%;
}

.tableWrapper > table > thead th {
  height: 46px;
  padding-left: 12px;
  text-align: justify;
  /* background-color: #0d0d54; */
  background-color: #fff;
  color: #1c1c1c66;
  font-weight: 500;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 12;

  border-right-width: 3px; /* Adjust thickness */
  border-right-style: solid;
  border-right-color: #d2d2d2;

  border-bottom: 1px solid #d2d2d2;
}

.tableWrapper > table > tbody td {
  /* height: 46px; */
  /* padding-left: 12px; */
  font-weight: 500;
  padding: 15px 0px 15px 12px;
  border-bottom: 1px solid #d2d2d2;
}
.actionClass {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.row-fix-to-last {
  position: -webkit-sticky;
  position: sticky;
  right: 0px;
  z-index: 10;
  background-color: #fff;
  /* padding: 6px 0px !important; */
}
.row-fix-to-last th {
  /* display: flex; */
  /* align-items: center; */
  text-align: center;
}
.table_row_color {
  background-color: #f4f5f6;
}
.newClass td {
  font-weight: bold !important;
}
.hoverClass:hover td {
  color: blue;
}
.updateBtn {
  background-color: #f0f0f0;
  padding: 2px 8px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}
.updateBtn:disabled {
  opacity: 50%;
}

.col_100px {
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.col_150px {
  width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.col_200px {
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.col_250px {
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.col_300px {
  width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.col_350px {
  width: 350px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.col_400px {
  width: 400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.css-1nmdiq5-menu {
  height: 100px !important ;
  background: white;
  overflow: hidden;
}

.pointer-cursor {
  cursor: pointer;
}
.react-flow__node a {
  cursor: pointer !important;
}

.recharts-pie-sector {
  outline: none !important;
  stroke: none !important;
}

.recharts-pie-sector:focus {
  outline: none !important;
}
.recharts-layer .recharts-sector:focus {
  outline: none !important;
}

.recharts-surface {
  outline: none !important;
}

