.text-center {
    text-align: center;
}
.selected-talents-list{
    padding-bottom: 10px;
}
.select-talent-checkbox input{
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.talents-selected-pane {
    padding-bottom: 8px;;
}
.search-result-box{
    padding-bottom: 10px;
}
.talents-text-filter-type input {
    width: 100%;
}
#talent-pagination {
    text-align: center;
}
#talent-pagination .page-numbers:not(.current) {
    cursor: pointer;
    color: rgb(6, 103, 183);
}
.talent-card {
    position: relative;
    padding: 2px;
    font-size: 0.9em;
}
.select-talent-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
}
.talents-search-filter {
    padding: 3px;
}
.talents-slider-filter-type .ui-slider-horizontal {
    height: 1em !important;
    width: 100% !important;
}
.talents-slider-filter-type .ui-slider-horizontal .ui-slider-handle {
    top: -3px !important;
    margin-left: -10px !important;
    width: 20px !important;
}
#talent-search-form .talents-search-filter .select2.select2-container .select2-selection {
    height: unset !important;
}

#talent-selected-container {
    display: none;
}

/* Tabs */
.talent-tabs-nav { display: flex; gap: 10px; margin-bottom: 15px; }
.talent-tabs-nav button {
  padding: 8px 16px;
  /* border: 1px solid #ccc; */
  color: #333;
  background: #bdbdbd;
  cursor: pointer;
  /* border-radius: 6px; */
  transition: 0.3s;
}
.talent-tabs-nav button.active {
  background: #23A455;
  color: #fff;
}
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* ajax loading overlay */
#ajax-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: none; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #ajax-overlay .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  