* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  background-image: linear-gradient(135deg, #89f7fe, #66a6ff);
  box-sizing: inherit;
}

.background {
  width: 100dvw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/resume.png") no-repeat center center / cover;
  backdrop-filter: blur(5px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 90%;
  max-width: 400px;
  color: white;
}

.glass-card h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  color: #f9f9f9;
}
.glass-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  color: #fff;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.input-group label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.input-group input {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.table-container {
  overflow: auto;
  border-radius: 4px;
  box-shadow: 0px 2px 24px #00000040;
  /* height: 550px; */
  height: auto;
  max-width: 100%;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.table-container thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: white;
  background: #6234ce;
  /* text-align: center; */
}

.table-container table {
  min-width: 100%;
  width: max-content; 
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #868c99;
  white-space: nowrap;
}

th {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

td {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

td a {
  color: #3968e2;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

tr:last-child td {
  border-bottom: none;
}

/************** SIDE BAR **************/
.main-screen-container {
  width: 100%;
  height: auto;
  display: flex;
}

.side-bar-conatiner {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background: linear-gradient(135deg, #a5cbff, #3776cd);
  z-index: 1000;
}

main {
  margin-left: 200px;
  width: calc(100% - 200px);
}

.main {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-container {
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.main-container-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.main-container .main-container-header ,
.main-container-header h2 {
  color: #003366;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}
.nav-link {
  display: block;
  color:#ffffff !important;
  background-color: transparent;
  text-decoration: none;
  padding: 12px 10px;
  margin-bottom: 10px;
  transition: background 0.3s;
}
.nav-link.active{
  display: block;
  color: #ffffff;
  background: #003366;
  text-decoration: none;
  padding: 12px 10px;
  margin-bottom: 10px;
  transition: background 0.3s;
}

.nav-link:hover {
  color: #ffffff;
  background: #003366;
}
.page-section {
  display: none;
}

.page-section:target {
  display: block;
}
.side-bar-conatiner .logo {
  width: 100%;
  display: flex;
  /* align-items: center;
    justify-content: center; */
  padding: 20px 10px;
}
.side-bar-conatiner .logo h6 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.login-button {
  display: flex;
  margin-top: 30px;
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #3776cd;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.wrap-description {
  max-width: 200px;
  word-wrap: break-word;
  white-space: normal;
}
.wrap-description-1 {
  max-width: 100px;
  word-wrap: break-word;
  white-space: normal;
}
.log-out-button {
  padding: 7px 10px;
  border-radius: 3px;
  background-color: #003366;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  text-decoration: none;
}
.log-out-button:hover {
  color: #fff !important;
}
.log-out-button-1 {
  padding: 4px 4px;
  border-radius: 6px;
  border: 1px solid #003366 !important;
  background-color: #fff;
  color: #003366;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  text-decoration: none;
}
.log-out-button-1:hover {
  background-color: #e2e2e2;
  color: #384bf5 !important;
}
.log-out-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.view-more-btn {
  margin-top: 4px;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  background-color: #003366;
  color: #ffffff;
}

.check-fraud-btn {
  width: 100px;
  margin-top: 4px;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  background-color: #039728;
  color: #ffffff;
}

.select-button {
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #fcfcfc;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  min-width: 200px;
}

.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagination-content p {
  color: #003366;
  font-size: 12px;
  font-weight: 400;
}
.pagination-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 10px;
  flex-wrap: wrap;
}

.page-btn {
  color: #0077b6;
  padding: 4px 8px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #0077b6;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 12px;
}

.page-btn:hover {
  background-color: #0077b6;
  color: #ffffff;
}

.page-btn.active {
  background-color: #0077b6;
  color: #ffffff;
  font-weight: 600;
}
.search-filter-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.input-section-box {
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  border: 1px solid #003366;
  font-size: 12px;
  border-radius: 6px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow: hidden;
}
.input-section-box img {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.input-section {
  display: flex;
  flex: 1;
  background-color: transparent;
  padding: 10px;
  outline: none;
  border: none;
  padding: 7px 10px !important;
  width: 250px;
  }

.dropdown-menu li {
  width: 180px;
  padding: 6px 10px;
}

.modal-header h5 {
  font-size: 16px;
  font-weight: 500;
  color: #003366;
  margin-bottom: 0px;
}
.close {
  background-color: transparent;
  border: none;
}
.modal-close-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.custom-modal {
  max-width: 1140px;
  max-height: 500px;
  height: 100%;
}
.custom-modal .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.custom-modal-body {
  flex: 1;
  overflow-y: auto;
}
.scrollable-body {
  max-height: 500px;
  overflow-y: auto;
}

.two-line-text {
  display: -webkit-box;
  display: box;
  display: -moz-box;
  display: flex;
  justify-content: center;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  /* Standard property */
  line-clamp: 2;
  -webkit-line-clamp: 2;

  max-height: 3.6em;
  line-height: 1.8em;
}

.text-danger {
  color: red;
}

.fraud-yes,
.fraud-no {
  display: inline-block;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-align: center;
}

.fraud-yes {
  background-color: #fdecea;
  color: #d9534f;
  border: 1px solid #f5c6cb;
  cursor: pointer;
}

.fraud-no {
  background-color: #e6f4ea;
  color: #5cb85c;
  border: 1px solid #c3e6cb;
}

.fraud-cell {
  text-align: center;
  vertical-align: middle;
}

.last-updated {
  display: block;
  font-size: 0.65rem;
  color: #777;
  margin-top: 4px;
}

.check-fraud-btn-all {
  width: 140px;
  padding: 7px 10px;
  border-radius: 6px;
  background-color: #5cb85c;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  text-decoration: none;
}

.check-box {
  width: 400px;
  height: 400px;
  cursor: pointer;
  accent-color: #007bff;
  margin: auto;
  display: block;
}

/* .fraud-modal-content {
  color: #000;
  line-height: 3px;
}

.fraud-modal-content p {
  color: #003366;
  font-size: 14px;
  font-weight: 600;
}

.fraud-modal-content strong {
  color: #323232;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 400;
}

pre{
  margin-bottom: 0px !important;
} */

.fraud-modal-card {
  background-color: #f9f9f9;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 6px solid #ff4d4f;
  overflow-x: auto;
}

.fraud-modal-card .modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #ff4d4f;
  margin-bottom: 15px;
}

.fraud-modal-card p {
  margin: 8px 0;
  font-size: 14px;
}

.fraud-modal-card strong {
  color: #222;
}

.dub-id-list {
  font-weight: bold;
  color: red;
}

.fraud-reasons-list {
  margin: 8px 0;
  padding-left: 20px;
}

.fraud-reason-item {
  background-color: #ffe5e5;
  color: #b30000;
  padding: 6px 10px;
  margin-bottom: 6px;
  border-radius: 6px;
  list-style-type: disc;
}


.drop-down-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.drop-down-button {
  padding: 7px 10px;
  border-radius: 3px;
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  text-decoration: none;
}

.action-btn-td {
  padding: 0;
  vertical-align: middle;
}

.action-btn-td > button {
  display: block;
  width: 100px;
  margin: 4px auto; 
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
}

.delete-btn {
  background-color: red;
  color: #fff;
  width: 100px;
  margin-top: 4px;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
}

.delete-btn-all {
  width: 140px;
  padding: 7px 10px;
  border-radius: 6px;
  background-color: red;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  text-decoration: none;
}
.stat-box-container h3{
  color: #003466;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.stat-cards-container{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.stat-card{
  width: 100%;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 20px;
  background-color: #f9f9f9;
}
.stat-card h6{
  color: #003366;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;;
}
.stat-card p{
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;;
}

.main-container-header h4{
  color: #000;
  font-size: 16px;
  font-weight: 500px;
  margin-bottom: 0px;
}
.table-container.unique{
  height: 550px;
}

.glass-card .logo{
  width: 100%;
  display: grid;
  place-content: center;
}
.glass-card .logo img{
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 30px;
}

