@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  /* font-family: Arial, sans-serif !important; */
  font-family: "Poppins", serif !important;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}



table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0;
  margin-bottom: 0px !important;
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  overflow: hidden;
  /* Ensure the border radius is applied */
  /* background: #000; */
}

th,
tfoot {
  background: #f8f9fa;
  font-weight: 600;
}

th,
td {
  padding: 12px !important;
  text-align: left !important;
  border-bottom: 1px solid #ddd !important;
}

/* tbody tr:first-child:last-child td {
    border-bottom: 0px none transparent !important;
} */

.error {
  color: #dc3545;
  margin-bottom: 10px;
  background: #ffe6e6;
  text-align: center;
}

.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}

form div {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #666;
}

input,
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  border-radius: 6px !important;
}

button {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px !important;
  cursor: pointer;
}

a {
  color: #4CAF50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.table td {
  vertical-align: middle;
}


.table-info-row td {
  border: 0px none transparent !important;
}

.table-info-row td {
  padding-block: 8px !important;
  /* padding-inline: 24px !important ; */
}

.table-clickable-row:hover {
  background-color: lightgrey;
  cursor: pointer;
}

.input-container {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}


.card {
  background: #f8f9fa;
  border-radius: 8px !important;
}

.custom-card {
  padding: 20px;
  text-align: center;
  gap: 8px;
}

.custom-card h3 {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.custom-card p {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.custom-card .card-icon {
  background: lightgray;
  padding: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  justify-items: center;
  border-radius: 100%;
  line-height: 22px;
}

.btn {
  display: inline-block !important;
  padding: 6px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-size: 14px !important;
}

/* .btn.btn- { */
.btn.btn-primary {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn.btn-light {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #bfdcfa !important;
}

.header {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 16px;
}

nav.navbar {
  position: sticky !important;
  top: 0;
  z-index: 10;
}

.breadcrumb {
  color: #666;
  margin-bottom: 20px;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;

  @media (max-width: 992px) {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    @media (max-width: 668px) {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }
}

.action-buttons {
  white-space: nowrap;
}



::-webkit-scrollbar {
  background: #fff;
  position: absolute;
  width: .3em;
  height: 5px;
  padding: 0;
}

::-webkit-scrollbar-thumb {
  background: #BDBEC0;
  border-radius: 5px;
}



.progress-sm {
  height: .5rem !important;
}




.icon-circle {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-left-primary {
  border-left: 0.25rem solid #4e73df !important;
}

.border-bottom-primary {
  border-bottom: 0.25rem solid #4e73df !important;
}

.border-left-secondary {
  border-left: 0.25rem solid #858796 !important;
}

.border-bottom-secondary {
  border-bottom: 0.25rem solid #858796 !important;
}

.border-left-success {
  border-left: 0.25rem solid #1cc88a !important;
}

.border-bottom-success {
  border-bottom: 0.25rem solid #1cc88a !important;
}

.border-left-info {
  border-left: 0.25rem solid #36b9cc !important;
}

.border-bottom-info {
  border-bottom: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
  border-left: 0.25rem solid #f6c23e !important;
}

.border-bottom-warning {
  border-bottom: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
  border-left: 0.25rem solid #e74a3b !important;
}

.border-bottom-danger {
  border-bottom: 0.25rem solid #e74a3b !important;
}

.border-left-light {
  border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
  border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
  border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
  border-bottom: 0.25rem solid #5a5c69 !important;
}

.float-right {
  float: right !important;
}

.header-tabs {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 4px;
  border: 1px solid #00000026 !important;
  border-radius: 8px !important;
}