












.statistics-wrapper {
  padding: 15px;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

@media(max-width : 760px){
    .stats-row{
        flex-direction: column;
    }
}
.filter-block {
    flex: 1 1 50%;
}
.filter-block label {
    display: block;
    margin-bottom: 5px;
    color: #767171;
}
.theme-select {
    border: 1px solid #B5B5B5 ;
    border-radius: 50px ;
    color: #B5B5B5;
    height: 33px;
    padding-right: 12px;
}
.themes-tabs {
    border: 0.97px solid #0092AD;
    border-radius: 97px ;
    /*width: 730px;*/
    justify-self: center;
    display: flex;
    justify-content: space-evenly;
    background-color: transparent;
    padding: 0;
}

.tab-item {
    flex: 1 1 auto ;
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    font-size: 18px;
    font-weight: 100 ;
    color: #A19FA3;
}

.tab-item.active {
    background-color: #0092AD;
    color: white;
    border-radius: 97px;
    margin: 2px;
    border-bottom: none;
}

.tab-content {
  display: none;
  padding: 10px;
  /*border: 1px solid #ccc;*/
}

.tab-content.active {
    display: flex;
    justify-content: center;
    width:100%;
}

.dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dataTables_filter input {
  margin-left: 0;
}

/* display */
.d-flex {
  display: flex;
}

/* horizontal alignment */
.justify-content-between {
  justify-content: space-between;
}

/* vertical alignment */
.align-items-center {
  align-items: center;
}

/* margin bottom (Bootstrap mb-3 = 1rem) */
.mb-3 {
  margin-bottom: 1rem;
}

.search-container label {
    display: none !important;
}

div.dt-container .dt-search input {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: inherit;
    margin-left: 3px;
}

.search-container input[type="search"] {
    border: 1px solid #B5B5B5 !important;
    border-radius: 50px !important;
    padding: 8px 15px !important;
    /*width: 300px !important;*/
    height: 40px !important;
    font-size: 14px !important;
    color: #888A89 !important;
}

div.dt-container .dt-input {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: inherit;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
.year-container select {
    border: 1px solid #B5B5B5 !important;
    border-radius: 50px !important;
    padding: 8px 15px !important;
    /*width: 200px !important;*/
    height: 40px !important;
    font-size: 14px !important;
    color: #888A89 !important;
    background-color: white !important;
    appearance: none !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    padding-left: 15px !important;
    text-align: start !important;

    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
table th:first-child, 
html[lang="ar"] table th:last-child {
    border-radius: 28px 0 0 0 !important;
}
table th:last-child, 
html[lang="ar"] table th:first-child {
    border-radius: 0 28px 0 0 !important;
}
table th {
    background-color: #0092AD !important;
    color: white !important;
    border: 1px solid #ddd;
    text-align: start !important;
}
table td {
    font-size: 16px;
    color: #888A89 !important;
    text-align: start !important;
}
td.icon {
    display: flex;
    justify-content: center;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: white !important;
}

.table td i.svg-icon {
    /* Existing Styles */
    font-size: 1.2rem;
    color: #81cbd7;
    margin-left: 10px;
    cursor: pointer;

    /* Use display: inline-block so size is respected */
    display: inline-block;
    width: 1em;   /* Matches font-size (1.2rem) */
    height: 1em;  /* Matches font-size (1.2rem) */

    /* The Masking Magic */
    background-color: currentColor; /* Inherits the #81cbd7 from above */
    -webkit-mask-image: url('/wp-content/uploads/2026/04/csv-file-type-svgrepo-com.svg');
    mask-image: url('/wp-content/uploads/2026/04/csv-file-type-svgrepo-com.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* For the larger icon in .icon cells */
.table td.icon i.svg-icon {
    font-size: 2rem; /* The SVG will automatically grow to 2rem */
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: ;
    --bs-card-subtitle-color: ;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}
.banner-card {
    padding: 30px 0px;
    transition: background-color 0.3s ease-in-out;
    border: 1px solid #e3e3e3;
}

.pt-0 {
    padding-top: 0 !important;
}
.h-100 {
    height: 100% !important;
}
.text-center {
    text-align: center !important;
}
.banner-card-title {
    color: #767171;
    margin-bottom: 25px;
    font-weight: bold;
    font-size:14px;
    margin-top:0;
}
.dt-container {
    width: 100%;
}