 /* PERSON LIST – FORCE BLANK PAGE
================================  */


body,
#root,
.outlet-holder,
.content-wrapper,
.main-content,
.page-wrapper,
/* .container, */
.container-fluid,
.card,
.card-body {
  background-color: transparent !important;
}

/* Remove table wrapper background */
.crm-table-wrapper {
  background: #FFFBF4 !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* This FORCES your Profile boxes to show up again */
.individuals-search-wrapper .form-control {
  background-color: #ffffff !important;
  border: 1px solid #ced4da !important;
  display: block !important;
  opacity: 1 !important;
}

/* Grid system */
.row,
.col,
.col-md-4 {
  background: transparent !important;
}

/* REMOVE HEADING SPACE (optional) */
.page-title {
  display: none;
}

/* Fix list spacing inside table */
.crm-table-wrapper ul {
  list-style: none !important; /* Removes the dots */
  padding: 0 !important;      /* Removes the left gap */
  margin: 0 !important;
}
.crm-table-wrapper li {
  padding: 3px 0;
  line-height: 1.4;
}

/* 1. This centers the text ONLY in the yellow header bar */
.crm-table-wrapper .rdt_TableCol {
  padding-left: 20px;
  justify-content: flex-start !important; /* This moves "Email" to the middle */
}
.crm-table-wrapper .rdt_TableCol_Div {
  justify-content: flex-start !important;
  text-align: left !important;
  display: flex !important;
}

/* 2. This keeps the actual data (emails/names) on the left side */
.crm-table-wrapper .rdt_TableCell {
  justify-content: flex-start !important; /* This keeps mmastoor@yahoo.com on the left */
  padding-left: 20px !important; /* Adds a nice gap from the left edge */
}

.crm-table-wrapper .rdt_TableCol:first-child,
.crm-table-wrapper .rdt_TableCell:first-child {
  padding-left: 10px !important;
  justify-content: center !important; /* Keep images centered in their small box */
}

/* Optional image alignment */
.crm-table-wrapper img {
  margin-left: 6px;
}

/* Card like ERM */
.individuals-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px;
}


.individuals-search-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10;
  margin-bottom: 1rem;
  justify-content: space-between;
}

/* .individuals-search-input {
  width: 100%;
  max-width: 420px;
  height: 40px;
  padding: 8px 14px;
  background-color: #fff;
  border: 1px solid #d1cfcf;
  border-radius: 2px;
  font-weight: 800;
  font-size: 14px;
  outline: none;
  box-shadow: none;
} */
/* .individuals-search-input::placeholder {
  color: #999;
  font-weight: 400;
} */
/* .individuals-search-input:focus {
  border: 1px solid #d1cfcf !important;
  background-color: #fff;
} */
/* Styling for the copy button inside the table */
.crm-table-wrapper button:hover .fa-copy {
    color: #b08320 !important; /* Slightly darker gold on hover */
    transform: scale(1.1);
    transition: all 0.2s ease;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.crm-table-wrapper span {
  animation: fadeIn 0.3s ease-in-out;
}
/* Updated Toast Styling */
.copy-toast {
  position: fixed;
  top:100px; /* Higher from the bottom */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  z-index: 99999 !important; /* Forces it above everything */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 3px solid #D9A128;

  /* Combined animation: slideUp then stay, then fadeOut */
  animation: slideInAndOut 3s ease-in-out forwards;
}
@keyframes toastSlide {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Styles the "Rows per page" text and dropdown container */

.rdt_Pagination {
  color: #333 !important;
  font-weight: 500;
  background-color: transparent !important;
  border-top: 1px solid #eee;
}

/* Styles the actual Select/Dropdown box */

.rdt_Pagination select {
  cursor: pointer;
  outline: none;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #D9A128; /* Gold border to match your theme */
  background-color: #fff;
}

/* Layout for the top header area
.table-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 10px;
} */
.individuals-search-wrapper.search-input {
  background-color: #fff !important;
  border: 1px solid #d1cfcf !important;
  color: #000 !important;
  font-weight: 800;
}
.show-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}
.show-dropdown-select {
  padding: 4px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
/* Remove default background from subheader */
.rdt_TableSubHeader {
  background: transparent !important;
  padding: 0 !important;
}
/* Email + copy icon alignment */
.email-copy-cell {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  overflow: hidden;
}
.email-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Copy button styling */
.email-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  color: #D9A128;
}
.email-copy-btn:hover {
  color: #b08320;
  transform: scale(1.1);
}
