
:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));;
    --foreground: #3d3636;
  }
}

body {
  color: var(--foreground);
  /* background: var(--background); */
  font-family: Arial, Helvetica, sans-serif;
}

.card.table-list-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.card-body {
  padding: 20px;
}

.nextjs-toast-errors-parent {
  display: none  !important;
  cursor: pointer;
  transition: transform 0.2sease;
}

.nextjs-toast{
  display: none !important;
}


/* Search input with icon styling */
.search-set {
  position: relative;
  min-width: 250px;
}

.search-inputa {
  display: flex;
  align-items: center;
  position: relative;
}

.search-inputa input {
  width: 100%;
  padding: 6px 40px 6px 24px;
  border: 1px solid #dce0e6;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.search-inputa input:focus {
  border-color: #1B2850;
  outline: none;
  box-shadow: 0 0 0 2px rgba(64, 81, 137, 0.1);
}

.btn-searchset {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #1B2850;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1;
}

.feather-search {
  width: 18px;
  height: 18px;
}

/* Filter button styling */
.search-path {
  margin: 0 15px;
}

.btn-filter {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  background-color: #1B2850;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background-color: #1B2850;
}

.filter-icon {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

/* Form sort dropdown styling */
.form-sort {
  display: flex;
  align-items: center;
}

.info-img {
  margin-right: 10px;
  color: #405189;
  width: 16px;
  height: 16px;
}

.select {
  padding: 8px 12px;
  border: 1px solid #dce0e6;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  background-color: white;
  min-width: 140px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23405189' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
}

.select:focus {
  border-color: #405189;
  outline: none;
  box-shadow: 0 0 0 2px rgba(64, 81, 137, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .table-top {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .search-set, .search-path, .form-sort {
    margin-bottom: 15px;
    width: 100%;
  }
}



.dropdown-container {
  position: relative;
}


/* Optional: Style the scrollbar for better appearance */
.scrollable-dropdown::-webkit-scrollbar {
  width: 2px;
}

.scrollable-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.scrollable-dropdown::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.scrollable-dropdown::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.css-13cymwt-control:hover{
  border-color: #ccc !important;
}

#setdata{
  display: none !important;
}

.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-count {
  font-size: 14px;
  font-weight: 500;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination-arrow {
  cursor: pointer;
  color: #007bff;
  transition: color 0.2s ease-in-out;
}

.pagination-arrow:hover {
  color: #0056b3;
}

.pagination-arrow.disabled {
  color: #ccc;
  pointer-events: none;
}

.pagination-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FF9F43;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(to right, #e4e4e4, #e5e5e5);
  color: white;
  padding: 2px;
}

.home-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.home-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 20px;
}

.home-button {
  background-color: white;
  color: #007bff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.home-button:hover {
  background-color: #0056b3;
  color: white;
  transform: scale(1.05);
}
