@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);

:root {
    --bs-primary: #0d6efd;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-body-color: #212529;
    --bs-body-bg: #ffffff;
    --bs-emphasis-color: #000000;
    --bs-secondary-color: rgba(33, 37, 41, 0.75);
    --bs-tertiary-color: rgba(33, 37, 41, 0.5);
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --sidebar-bg: var(--bs-body-bg);
    --sidebar-border: var(--bs-border-color);
    --nav-link-color: var(--bs-secondary-color);
    --nav-link-hover-color: var(--bs-body-color);
    --nav-link-hover-bg: var(--bs-light);
    --nav-link-active-color: #495057;
    --nav-link-active-bg: #f8f9fa;
    --nav-group-title-color: var(--bs-tertiary-color);
    --bs-gray-150: #f1f3f4
}

[data-bs-theme="dark"] {
    --bs-body-color: #adb5bd;
    --bs-body-bg: #212529;
    --bs-emphasis-color: #ffffff;
    --bs-secondary-color: rgba(173, 181, 189, 0.75);
    --bs-tertiary-color: rgba(173, 181, 189, 0.5);
    --bs-border-color: #495057;
    --bs-border-color-translucent: rgba(255, 255, 255, 0.175);
    --bs-link-color: #6ea8fe;
    --bs-link-hover-color: #9ec5fe;
    --sidebar-bg: #1a1d20;
    --sidebar-border: var(--bs-border-color);
    --nav-link-color: var(--bs-secondary-color);
    --nav-link-hover-color: var(--bs-emphasis-color);
    --nav-link-hover-bg: rgba(255, 255, 255, 0.05);
    --nav-link-active-color: #f8f9fa;
    --nav-link-active-bg: rgba(255, 255, 255, 0.1);
    --nav-group-title-color: var(--bs-tertiary-color);
    --bs-gray-150: rgba(255, 255, 255, 0.04)
}

.provider-card {
    background: var(--bs-body-bg);
    border: 2px dotted var(--bs-border-color);
    border-radius: 15px;
    padding: 1.25rem;
    transition: none
}

.provider-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.provider-logo {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--bs-border-color)
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 4px
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem
}

.provider-info {
    flex: 1
}

.provider-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: var(--bs-emphasis-color)
}

.provider-meta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .5rem
}

.meta-item {
    font-size: .75rem;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid
}

.meta-item.icann {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background: rgb(25 135 84 / .1)
}

.meta-item.icann::before {
    content: "ICANN Akrediteli"
}

.meta-item.trabis {
    color: var(--bs-success);
    border-color: var(--bs-success);
    background: rgb(13 202 240 / .1)
}

.meta-item.trabis::before {
    content: "Trabis Kayıtlı"
}

.provider-stats {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .75rem;
    border-top: 1px dotted var(--bs-border-color);
    margin-bottom: 1rem
}

.stat {
    text-align: center;
    flex: 1;
    background: var(--bs-gray-150);
    border-radius: 12px;
    padding: .75rem;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dotted var(--bs-border-color);
    position: relative
}

.stat-icon {
    font-size: .75rem;
    color: var(--bs-secondary);
    position: absolute;
    top: .5rem;
    left: .5rem
}

.stat-number {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--bs-emphasis-color);
    line-height: 1
}

.stat-label {
    font-size: .6rem;
    color: var(--bs-secondary-color);
    margin-top: .125rem;
    display: block;
    line-height: 1
}

.provider-actions {
    display: flex;
    justify-content: center
}

@media (max-width:768px) {
    .provider-card {
        padding: 1rem
    }

    .provider-header {
        gap: .5rem
    }

    .provider-stats {
        gap: .5rem
    }

    .stat {
        width: 60px;
        height: 60px;
        padding: .5rem
    }

    .stat-icon {
        font-size: .75rem
    }

    .stat-number {
        font-size: .75rem
    }

    .stat-label {
        font-size: .55rem
    }
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    transition: background-color 0.15s ease, color 0.15s ease;
    overflow-x: hidden;
    letter-spacing: .03rem
}

.sidebar {
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    height: 100vh;
    width: 240px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, background-color 0.15s ease
}

.sidebar-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--sidebar-border);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    flex-shrink: 0
}

.logo {
    width: 20px;
    height: 20px;
    background-color: var(--bs-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0
}

.brand-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-emphasis-color);
    letter-spacing: -.2px
}

.version {
    font-size: 11px;
    color: var(--nav-group-title-color);
    font-weight: 400
}

.sidebar-nav {
    padding: 15px 0;
    flex-grow: 1;
    overflow-y: auto
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px
}

.sidebar-nav::-webkit-scrollbar-track {
    background: #fff0
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: var(--bs-border-color);
    border-radius: 2px
}

.nav-group-title {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nav-group-title-color);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 15px
}

.nav-group-title:first-child {
    margin-top: 0
}

.nav-link {
    color: var(--nav-link-color);
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.15s ease;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid #fff0
}

.nav-link:hover {
    background-color: var(--nav-link-hover-bg);
    color: var(--nav-link-hover-color);
    text-decoration: none
}

.nav-link.active {
    background-color: var(--nav-link-active-bg);
    color: var(--nav-link-active-color);
    font-weight: 500;
    border-left-color: var(--nav-link-active-color)
}

.nav-icon {
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    opacity: .8
}

.nav-item {
    margin-bottom: 4px
}

.nav-link.active .nav-icon {
    opacity: 1
}

.badge-new {
    background-color: var(--bs-danger);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: auto;
    font-weight: 500
}

.submenu {
    list-style: none;
    padding-left: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease;
    background-color: #fff0
}

.submenu-item .nav-link {
    padding-left: 54px;
    border-left: none;
    font-weight: 400;
    position: relative;
    transition: background-color 0.15s ease, color 0.15s ease
}

.submenu-item .nav-link:hover::before {
    transform: scale(1.3)
}

.submenu-item .nav-link::before {
    content: "•";
    position: absolute;
    left: 40px;
    color: var(--nav-link-color);
    opacity: .7;
    font-weight: 700;
    transition: color 0.15s ease, opacity 0.15s ease, transform 0.2s ease
}

.submenu-item .nav-link.active {
    background-color: var(--nav-link-active-bg);
    color: var(--nav-link-active-color);
    font-weight: 500
}

.submenu-item .nav-link.active::before {
    color: var(--nav-link-active-color);
    opacity: 1
}

.nav-item.open .submenu {
    max-height: 300px
}

.submenu-toggle-icon {
    margin-left: auto;
    transition: transform 0.2s ease;
    font-size: 12px;
    opacity: .6
}

.nav-item.open .submenu-toggle-icon {
    transform: rotate(90deg)
}

.main-content {
    margin-left: 240px;
    transition: margin-left 0.2s ease;
    min-height: 100vh
}

.top-bar {
    background-color: var(--bs-body-bg);
    border-bottom: 1px solid var(--bs-border-color);
    padding: 15px 15px;
    display: flex;
    align-items: center;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    gap: 15px
}

.btn-rounded {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
    color: var(--bs-body-color);
    flex-shrink: 0
}

.btn-rounded:hover {
    background-color: var(--bs-light)
}

[data-bs-theme="dark"] .btn-rounded:hover {
    background-color: rgb(255 255 255 / .1)
}

.search-box {
    flex: 1;
    max-width: 400px;
    margin: 0
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--bs-border-color);
    border-radius: 6px;
    font-size: 14px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    transition: border-color 0.15s ease, box-shadow 0.15s ease
}

.search-input:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .25)
}

.search-input::placeholder {
    color: var(--bs-tertiary-color)
}

.theme-icon {
    font-size: 18px
}

[data-bs-theme="light"] .theme-icon.fa-moon {
    color: #6c757d
}

[data-bs-theme="dark"] .theme-icon.fa-sun {
    color: #ffc107
}

@media (max-width:768px) {
    .sidebar {
        transform: translateX(-100%)
    }

    .sidebar.show {
        transform: translateX(0)
    }

    .main-content {
        margin-left: 0
    }

    .search-box {
        margin: 0 10px
    }

    .top-bar {
        padding: 15px 20px;
        gap: 10px
    }
}

@media (min-width:769px) {
    .main-content.sidebar-collapsed {
        margin-left: 0
    }

    .sidebar.collapsed {
        transform: translateX(-100%)
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .5);
    z-index: 1019;
    display: none
}

.sidebar-overlay.show {
    display: block
}

.nav-link:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: -2px
}

.hero-card {
    display: flex;
    align-items: center;
    background: var(--bs-body-bg);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgb(0 0 0 / .04);
    overflow: hidden
}

[data-bs-theme="dark"] .hero-card {
    background: var(--bs-dark);
    box-shadow: 0 2px 8px rgb(0 0 0 / .2)
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--bs-emphasis-color);
    margin-bottom: 0;
    line-height: 1.2;
    position: relative
}

[data-bs-theme="dark"] .hero-title {
    color: var(--bs-white)
}

.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: var(--bs-gray-100);
    min-height: calc(100vh - 60px)
}

[data-bs-theme="dark"] .content-area {
    background-color: var(--bs-gray-900)
}

@media (max-width:768px) {
    .content-area {
        padding: .75rem
    }
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.notification-btn {
    position: relative
}

.notification-btn i {
    font-size: 18px
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--bs-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 3px;
    border-radius: 10px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.offcanvas {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-left: 1px solid var(--bs-border-color)
}

.offcanvas-header {
    border-bottom: 1px solid var(--bs-border-color);
    background-color: var(--bs-body-bg)
}

.offcanvas-title {
    color: var(--bs-emphasis-color);
    font-weight: 600
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background-color: var(--bs-light);
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    transition: background-color 0.15s ease
}

[data-bs-theme="dark"] .notification-item {
    background-color: rgb(255 255 255 / .05)
}

.notification-item:hover {
    background-color: var(--bs-border-color)
}

[data-bs-theme="dark"] .notification-item:hover {
    background-color: rgb(255 255 255 / .08)
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0
}

.notification-content {
    flex: 1
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--bs-emphasis-color)
}

.notification-text {
    font-size: 13px;
    color: var(--bs-secondary-color);
    margin: 0 0 8px 0;
    line-height: 1.4
}

.notification-time {
    font-size: 12px;
    color: var(--bs-tertiary-color)
}

.domain-price-box {
    background-color: var(--secondary-color);
    padding: 1rem;
    border-radius: .75rem;
    margin-bottom: .1rem
}

[data-bs-theme="dark"] .domain-price-box:hover {
    background-color: var(--bs-dark-bg-subtle)
}

.domain-price-box:hover {
    background-color: var(--bs-gray-200)
}

.price-label {
    color: #6c757d;
    font-size: .9rem
}

.price-value {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700
}

.btn-outline {
    background: #fff0;
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .375rem .75rem;
    font-size: .875rem;
    border-radius: .375rem
}

.btn-outline:hover {
    color: var(--bs-emphasis-color);
    text-decoration: none;
    border-color: var(--bs-primary)
}

[data-bs-theme="dark"] .btn-outline {
    border-color: rgb(255 255 255 / .2);
    color: var(--bs-gray-300)
}

[data-bs-theme="dark"] .btn-outline:hover {
    color: var(--bs-white);
    border-color: var(--bs-primary)
}

.btn-outline-dashed {
    border-style: dashed;
    border-width: 1px
}

.btn-light {
    background-color: var(--bs-light);
    border-color: var(--bs-light);
    color: var(--bs-dark)
}

.btn-light:hover {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: var(--bs-dark)
}

.btn-light:focus,
.btn-light.focus {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: var(--bs-dark);
    box-shadow: 0 0 0 .2rem rgb(248 249 250 / .5)
}

.btn-light.disabled,
.btn-light:disabled {
    background-color: var(--bs-light);
    border-color: var(--bs-light);
    color: var(--bs-dark);
    opacity: .65
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: var(--bs-dark)
}

[data-bs-theme="dark"] .btn-light {
    background-color: #3a3f44;
    border-color: #3a3f44;
    color: var(--bs-white)
}

[data-bs-theme="dark"] .btn-light:hover {
    background-color: #2c3136;
    border-color: #2c3136;
    color: var(--bs-white)
}

[data-bs-theme="dark"] .btn-light:focus,
[data-bs-theme="dark"] .btn-light.focus {
    background-color: #2c3136;
    border-color: #2c3136;
    color: var(--bs-white);
    box-shadow: 0 0 0 .2rem rgb(58 63 68 / .5)
}

[data-bs-theme="dark"] .btn-light.disabled,
[data-bs-theme="dark"] .btn-light:disabled {
    background-color: #3a3f44;
    border-color: #3a3f44;
    color: var(--bs-white);
    opacity: .65
}

[data-bs-theme="dark"] .btn-light:not(:disabled):not(.disabled):active,
[data-bs-theme="dark"] .btn-light:not(:disabled):not(.disabled).active {
    background-color: #2c3136;
    border-color: #2c3136;
    color: var(--bs-white)
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 1px 3px rgb(0 0 0 / .12)
}

.bullet.bg-gray {
    background: linear-gradient(135deg, var(--bs-gray-400), var(--bs-gray-500))
}

.bullet.bg-dark {
    background: linear-gradient(135deg, var(--bs-dark), var(--bs-gray-800))
}

[data-bs-theme="dark"] .bullet.bg-gray {
    background: linear-gradient(135deg, var(--bs-gray-600), var(--bs-gray-500));
    box-shadow: 0 1px 3px rgb(255 255 255 / .1)
}

[data-bs-theme="dark"] .bullet.bg-dark {
    background: linear-gradient(135deg, var(--bs-light), var(--bs-gray-200));
    box-shadow: 0 1px 3px rgb(255 255 255 / .2)
}

.bullet.bg-primary {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-blue));
    box-shadow: 0 1px 3px rgb(13 110 253 / .3)
}

.bullet.bg-success {
    background: linear-gradient(135deg, var(--bs-success), var(--bs-green));
    box-shadow: 0 1px 3px rgb(25 135 84 / .3)
}

.bullet.bg-warning {
    background: linear-gradient(135deg, var(--bs-warning), var(--bs-orange));
    box-shadow: 0 1px 3px rgb(255 193 7 / .3)
}

.bullet.bg-danger {
    background: linear-gradient(135deg, var(--bs-danger), var(--bs-red));
    box-shadow: 0 1px 3px rgb(220 53 69 / .3)
}

.hr-diagonal {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--bs-border-color) 50%, transparent 100%);
    margin: .5rem 0
}

[data-bs-theme="dark"] .hr-diagonal {
    background: linear-gradient(90deg, transparent 0%, rgb(255 255 255 / .1) 50%, transparent 100%)
}

.domain-price-box {
    background-color: var(--bs-gray-50);
    padding: 1rem;
    border-radius: .75rem;
    margin-bottom: .1rem
}

.domain-price-box:hover {
    background-color: var(--bs-gray-150)
}

[data-bs-theme="dark"] .domain-price-box {
    background-color: rgb(255 255 255 / .03)
}

[data-bs-theme="dark"] .domain-price-box:hover {
    background-color: rgb(255 255 255 / .06)
}

small {
    font-size: .80em !important
}

hr.hr-diagonal {
    position: relative;
    overflow: hidden
}

hr.hr-diagonal {
    width: 100%;
    height: 8px;
    border: 0;
    margin: 0
}

hr.hr-diagonal:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff0;
    opacity: .5;
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(45deg, var(--bs-body-color) 0, var(--bs-body-color) 1px, transparent 0, transparent 50%)
}

.text-tld {
    position: relative;
    display: inline-block;
    padding: .6rem 1.2rem;
    border-radius: 25px
}

.text-tld::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bs-gray-200);
    opacity: .4
}

.text-tld span {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: .5px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

[data-bs-theme="dark"] .text-tld::before {
    background-color: rgb(255 255 255 / .1);
    opacity: .5
}

[data-bs-theme="dark"] .text-tld span {
    background: linear-gradient(135deg, #ff8c00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.pagination {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0
}

.page-link {
    border: none;
    background: #fff0;
    color: var(--bs-secondary-color);
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.page-link:hover {
    background-color: var(--bs-light);
    color: var(--bs-emphasis-color);
    text-decoration: none;
    transform: translateY(-1px)
}

.page-link:focus {
    box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), .25);
    outline: none;
    z-index: 3
}

.page-item.active .page-link {
    background-color: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), .3)
}

.page-item.disabled .page-link {
    color: var(--bs-tertiary-color);
    background-color: #fff0;
    cursor: not-allowed;
    opacity: .5
}

.page-item.disabled .page-link:hover {
    background-color: #fff0;
    transform: none
}

[data-bs-theme="dark"] .page-link {
    color: var(--bs-secondary-color)
}

[data-bs-theme="dark"] .page-link:hover {
    background-color: rgb(255 255 255 / .1);
    color: var(--bs-emphasis-color)
}

[data-bs-theme="dark"] .page-item.active .page-link {
    background-color: var(--bs-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), .4)
}

[data-bs-theme="dark"] .page-item.disabled .page-link {
    color: var(--bs-tertiary-color);
    background-color: #fff0
}

.page-link[aria-label="Previous"],
.page-link[aria-label="Next"] {
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px
}

.pagination-sm .page-link {
    padding: 6px 8px;
    font-size: 12px;
    min-width: 32px;
    height: 32px;
    border-radius: 6px
}

.pagination-sm .page-link[aria-label="Previous"],
.pagination-sm .page-link[aria-label="Next"] {
    width: 32px;
    height: 32px;
    padding: 6px;
    font-size: 14px
}

.pagination-lg .page-link {
    padding: 12px 16px;
    font-size: 16px;
    min-width: 48px;
    height: 48px;
    border-radius: 10px
}

.pagination-lg .page-link[aria-label="Previous"],
.pagination-lg .page-link[aria-label="Next"] {
    width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 18px
}

.pagination-dots {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 8px
}

.pagination-dots span {
    width: 4px;
    height: 4px;
    background-color: var(--bs-tertiary-color);
    border-radius: 50%;
    display: inline-block
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--bs-border-color);
    margin-top: 30px
}

.pagination-info {
    color: var(--bs-secondary-color);
    font-size: 14px;
    font-weight: 500
}

.pagination-info strong {
    color: var(--bs-emphasis-color)
}

@media (max-width:576px) {
    .pagination {
        gap: 2px
    }

    .page-link {
        padding: 8px 10px;
        min-width: 36px;
        height: 36px;
        font-size: 13px
    }

    .page-link[aria-label="Previous"],
    .page-link[aria-label="Next"] {
        width: 36px;
        height: 36px;
        padding: 8px
    }

    .pagination-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center
    }
}

.bullet-vertical {
    width: 4px;
    height: 40px;
    border-radius: 2px;
    display: inline-block;
    box-shadow: 0 1px 3px rgb(0 0 0 / .12)
}

.min-width-150 {
    min-width: 150px
}

.underline-decoration {
    width: 400px;
    height: auto;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: block
}

.htmx-swapping {
    opacity: 0;
    transition: opacity 0.3s ease-in-out
}

.htmx-settling {
    opacity: 1;
    transition: opacity 0.3s ease-in-out
}

.my-indicator {
    display: none
}

.htmx-request .my-indicator {
    display: inline
}

.htmx-request.my-indicator {
    display: inline
}

.colorgraph {
    height: 5px;
    border-top: 0;
    background: #137d0d;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4)
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0
}

@supports (-webkit-text-stroke:1px black) {
    .stroke-text {
        background: linear-gradient(45deg, #ff6b35, #f7931e, #ffa500);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: #fff0;
        -webkit-text-stroke: 1px #ff4500
    }
}

.breadcrumb-custom {
    --bs-breadcrumb-divider: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: .7;
    font-size: .875rem
}

.breadcrumb-custom .breadcrumb-item {
    display: flex;
    align-items: center
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    content: '';
    display: none
}

.breadcrumb-custom .breadcrumb-item:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    color: var(--bs-tertiary-color);
    opacity: .4;
    margin: 0 .75rem;
    font-size: .7rem;
    display: inline-block
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--bs-tertiary-color);
    transition: color 0.15s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--bs-secondary-color)
}

.breadcrumb-custom .breadcrumb-item a i {
    margin-right: .5rem;
    font-size: .8rem;
    opacity: .8
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--bs-tertiary-color);
    font-weight: 400
}



[data-bs-theme="dark"] .breadcrumb-custom .breadcrumb-item:not(:last-child)::after {
    color: var(--bs-tertiary-color);
    opacity: .3
}

[data-bs-theme="dark"] .breadcrumb-custom .breadcrumb-item a {
    color: var(--bs-tertiary-color)
}

[data-bs-theme="dark"] .breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--bs-secondary-color)
}

[data-bs-theme="dark"] .breadcrumb-custom .breadcrumb-item.active {
    color: var(--bs-tertiary-color)
}

@media (max-width:767.98px) {
    .breadcrumb-custom {
        padding: .5rem .75rem;
        font-size: .875rem
    }

    .breadcrumb-custom .breadcrumb-item:not(:last-child)::after {
        margin: 0 .5rem;
        font-size: .7rem
    }

    .breadcrumb-custom .breadcrumb-item a i {
        margin-right: .375rem;
        font-size: .8rem
    }
}

@media (max-width:575.98px) {
    .breadcrumb-custom {
        padding: .375rem .5rem;
        font-size: .8rem;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap
    }

    .breadcrumb-custom .breadcrumb-item {
        flex-shrink: 0
    }

    .breadcrumb-custom .breadcrumb-item:not(:last-child)::after {
        margin: 0 .375rem;
        font-size: .65rem
    }

    .breadcrumb-custom .breadcrumb-item a {
        white-space: nowrap
    }

    .breadcrumb-custom .breadcrumb-item a i {
        margin-right: .25rem;
        font-size: .75rem
    }
}

th[role=columnheader]:not(.no-sort) {
    cursor: pointer;
    position: relative;
    padding-right: 25px !important;
    transition: background-color 0.2s ease
}

th[role=columnheader]:not(.no-sort):hover {
    background-color: rgb(0 123 255 / .1)
}

th[role=columnheader]:not(.no-sort):after {
    content: '⇅';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #dee2e6;
    opacity: .6;
    transition: all 0.2s ease
}

th[aria-sort=ascending]:not(.no-sort):after {
    content: '↓';
    color: #007bff;
    opacity: 1;
    font-size: 16px;
    font-weight: 700
}

th[aria-sort=descending]:not(.no-sort):after {
    content: '↑';
    color: #007bff;
    opacity: 1;
    font-size: 16px;
    font-weight: 700
}

th[role=columnheader]:not(.no-sort):hover:after {
    color: #0056b3;
    opacity: 1
}

th[aria-sort]:not(.no-sort) {
    background-color: rgb(0 123 255 / .05)
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--bs-body-bg);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgb(0 0 0 / .2);
    display: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center
}

.scroll-to-top svg {
    position: absolute
}

.scroll-to-top i {
    z-index: 1
}