.tab-content {
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  padding: 1.5rem;
}

.no-decoration {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-decoration: none;
  outline: none;
}

.form-check input[type=radio] {
  position: relative;
  top: 3px;
}

.form-check-input:checked {
  background: none;
}

.toast-success {
    background-color: #5d94e8 !important;
}

.select2-container--open {
  z-index: 1000000000000000000 !important;
}

.select2-dropdown {
  z-index: 900109293813891300000;
}

.option-entry-info {
  font-size: 14px;
  font-style: italic;
  color: #6f6f6f;
  margin-top: 3px;
}

/* Round Card */
.round_card {
    border-radius: 10px;
    background: #efefef;
    padding: 20px;
}

/* Filters Open/Close */
.filters_open_close_nav, .order_by_open_close_nav {
    cursor: pointer;
}
.up_down_arrow img {
    width: 24px;
}
/* End Filters Open/Close */

/* Filter Cards */
.oxygen_filter_card {
    padding: 6px 12px;
    background: #e7e8f7;
    padding-right: 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.oxygen_filter_card .oxygen_filter_label {
    font-weight: 600;
    margin-right: 4px;
    color: #3c3c3c;
}

.oxygen_filter_card .oxygen_filter_value {
    color: #5a5a5a;
}

.oxygen_filter_card .oxygen_filter_card_close {
    display: inline-flex;
    align-items: center;
    padding: 2px 4px;
    outline: none !important;
    margin-left: 8px;
    text-decoration: none;
    color: #666;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease;
}

.oxygen_filter_card .oxygen_filter_card_close:hover {
    color: #ff5151;
}

.oxygen_filter_card .oxygen_close_icon {
    font-size: 22px;
    font-weight: bold;
}

.users_filter_card_holder {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 15px;
    min-height: 20px;
}

/* Clear All Filters Button */
.clear_all_filters {
    display: none;
    padding: 6px 16px;
    background: #ff5151;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
    margin-bottom: 10px;
}

.clear_all_filters:hover {
    background: #e64545;
    color: #fff;
}

/* Users Table Styles */
.users_table_wrapper {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

/* No Decoration Link */
.no_decoration_link {
    text-decoration: none !important;
}

.admin_link {
    text-decoration: none !important;
    color: #0073aa;
}

.admin_link:hover {
    text-decoration: underline !important;
}

/* Pagination Styles */
.users_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.users_pagination_info {
    font-size: 14px;
    color: #666;
}

.users_pagination_controls {
    display: flex;
    gap: 10px;
}

.users_pagination_prev,
.users_pagination_next {
    padding: 6px 12px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s ease;
}

.users_pagination_prev:hover,
.users_pagination_next:hover {
    background: #e0e0e0;
}

.users_pagination_prev.disabled,
.users_pagination_next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Preloader */
.oxygen_center_body {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
}

.oxygen_loader_circle {
    position: relative;
    width: 70px;
    height: 70px;
    display: inline-block;
}

.oxygen_loader_circle:before,
.oxygen_loader_circle:after {
    content: "";
    display: block;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    border-color: #5d94e8;
    top: 0;
    left: 0;
}

.oxygen_loader_circle:before {
    animation: oxygen-loader-scale 1s linear 0s infinite;
}

.oxygen_loader_circle:after {
    opacity: 0;
    animation: oxygen-loader-scale 1s linear 0.5s infinite;
}

@keyframes oxygen-loader-scale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(0.7);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
