.form-control:focus {
    box-shadow: none !important;
}
.form-select:focus {
    box-shadow: none !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection{
    box-shadow: none !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus{
    box-shadow: none !important;
}

.disabled-link {
    opacity: 0.5;
    cursor: not-allowed;  /* Change the cursor to "not-allowed" */
}

/*for-file-import-design*/
.upload-container {
    margin: 2rem auto;
}

.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.upload-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 1rem;
}

.upload-text {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.upload-subtext {
    font-size: 0.875rem;
    color: #adb5bd;
}

#fileInput {
    display: none;
}
.card-heading {
    padding: 10px 20px;
    background-color: #f2f2f2;
}
.table-container {
    overflow-x: auto;
}

.fixed-column-table {
    border-collapse: collapse;
    width: 100%;
}

.fixed-column-table th,
.fixed-column-table td {
    border: 1px solid #ccc;
    padding: 8px;
    white-space: nowrap;
}

.sticky-col {
    position: sticky;
    left: -1px;
    background-color: #f9f9f9;
    z-index: 1;
}
/*end for-file-import-design*/
#preloader {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
