
.d-none {
    display: none !important;
}


.d-block {
    display: block !important;
}


.d-flex {
    display: flex !important;
}


.d-inline-flex {
    display: inline-flex !important;
}


.flex-column {
    flex-direction: column !important;
}


.flex-wrap {
    flex-wrap: wrap !important;
}


.flex-grow-1 {
    flex-grow: 1 !important;
}


.flex-shrink-0 {
    flex-shrink: 0 !important;
}


.flex-fill {
    flex: 1 1 auto !important;
}


.justify-content-center {
    justify-content: center !important;
}


.justify-content-between {
    justify-content: space-between !important;
}


.align-items-start {
    align-items: flex-start !important;
}


.align-items-end {
    align-items: flex-end !important;
}


.align-items-center {
    align-items: center !important;
}


.gap-0 {
    gap: 0 !important;
}


.gap-1 {
    gap: 4px !important;
}


.gap-2 {
    gap: 8px !important;
}


.gap-3 {
    gap: 12px !important;
}


.w-100 {
    width: 100% !important;
}


.h-100 {
    height: 100% !important;
}


.position-relative {
    position: relative !important;
}


.m-0 {
    margin: 0 !important;
}


.m-4 {
    margin: 16px !important;
}


.me-1 {
    margin-right: 4px !important;
}


.me-2 {
    margin-right: 8px !important;
}


.ms-1 {
    margin-left: 4px !important;
}


.ms-2 {
    margin-left: 8px !important;
}


.ms-auto {
    margin-left: auto !important;
}


.mt-1 {
    margin-top: 4px !important;
}


.mt-2 {
    margin-top: 8px !important;
}


.mt-3 {
    margin-top: 12px !important;
}


.mb-0 {
    margin-bottom: 0 !important;
}


.mb-1 {
    margin-bottom: 4px !important;
}


.mb-2 {
    margin-bottom: 8px !important;
}


.mb-3 {
    margin-bottom: 12px !important;
}


.p-0 {
    padding: 0 !important;
}


.p-2 {
    padding: 8px !important;
}


.p-4 {
    padding: 16px !important;
}


.py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}


.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}


.py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}


.py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}


.py-5 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}


.px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}


.col-auto {
    flex: 0 0 auto;
    width: auto;
}


.col-12 {
    flex: 0 0 100%;
}


.row {
    --gutter-x: 24px;
    --gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--gutter-x) * -0.5);
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-top: calc(var(--gutter-y) * -1);
}


.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-left: calc(var(--gutter-x) * 0.5);
    padding-right: calc(var(--gutter-x) * 0.5);
    margin-top: var(--gutter-y);
    box-sizing: border-box;
}


.g-2 {
    --gutter-x: 8px;
    --gutter-y: 8px;
}


.g-3 {
    --gutter-x: 12px;
    --gutter-y: 12px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--text-primary, #fff);
    background: var(--surface-secondary, #252525);
}


.btn:hover:not(:disabled) {
    background: var(--surface-hover, #2E2E2E);
}


.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}


.btn-primary {
    background: var(--accent-primary, #33B5E5);
    border-color: var(--accent-primary, #33B5E5);
}


.btn-primary:hover:not(:disabled) {
    background: #4cc3f0;
    border-color: #4cc3f0;
}


.btn-success {
    background: var(--success, #4caf50);
    border-color: var(--success, #4caf50);
}


.btn-success:hover:not(:disabled) {
    background: #66bb6a;
    border-color: #66bb6a;
}


.btn-outline-primary {
    background: transparent;
    border-color: var(--accent-primary, #33B5E5);
    color: var(--accent-primary, #33B5E5);
}


.btn-outline-primary:hover:not(:disabled) {
    background: var(--accent-primary, #33B5E5);
    color: #fff;
}


.btn-outline-secondary {
    background: transparent;
    border-color: var(--border-default, #3A3A3A);
    color: var(--text-secondary, #A0A0A0);
}


.btn-outline-secondary:hover:not(:disabled) {
    background: var(--surface-hover, #2E2E2E);
    color: var(--text-primary, #fff);
}


.btn-outline-primary.btn-sm, .btn-outline-secondary.btn-sm, .btn-outline-danger.btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}


.btn-link {
    background: none;
    border: none;
    color: var(--accent-primary, #33B5E5);
    text-decoration: none;
    padding: 4px 8px;
}


.btn-link:hover:not(:disabled) {
    text-decoration: underline;
}


.btn-group {
    display: inline-flex;
}


.btn-group > .btn {
    border-radius: 0;
}


.btn-group > .btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}


.btn-group > .btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}


.btn-group > .btn:not(:first-child) {
    margin-left: -1px;
}


.btn-group-sm > .btn {
    padding: 4px 10px;
    font-size: 12px;
}


.form-control {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-primary, #fff);
    background: var(--surface-secondary, #252525);
    border: 1px solid var(--border-default, #3A3A3A);
    border-radius: 4px;
    transition: border-color 0.15s, box-shadow 0.15s;
}


.form-control:focus {
    outline: none;
    border-color: var(--accent-primary, #33B5E5);
    box-shadow: 0 0 0 2px rgba(51, 181, 229, 0.2);
}


.form-control::placeholder {
    color: var(--text-muted, #606060);
}


.form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.form-control-sm {
    padding: 4px 10px;
    font-size: 12px;
}


.form-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary, #A0A0A0);
}


.form-text {
    font-size: 11px;
    color: var(--text-muted, #606060);
    margin-top: 2px;
}


.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}


.form-check-label {
    font-size: 13px;
    cursor: pointer;
}


.input-group > .form-control {
    border-radius: 0;
}


.input-group > .form-control:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}


.input-group > .form-control:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}


.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}


.card-text {
    font-size: 13px;
    color: var(--text-secondary, #A0A0A0);
}


.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}


.bg-secondary {
    background: var(--surface-secondary, #252525);
    color: var(--text-secondary, #A0A0A0);
}


.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}


.table th, .table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-subtle, #2A2A2A);
}


.table thead th {
    background: var(--surface-secondary, #252525);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary, #A0A0A0);
    position: sticky;
    top: 0;
}


.table tbody tr:hover {
    background: var(--surface-hover, #2E2E2E);
}


.table-sm th, .table-sm td {
    padding: 4px 10px;
    font-size: 12px;
}


.list-group {
    display: flex;
    flex-direction: column;
}


.list-group-item {
    padding: 10px 14px;
    background: var(--surface-primary, #1A1A1A);
    border: 1px solid var(--border-subtle, #2A2A2A);
    border-radius: 4px;
    margin-bottom: 2px;
    font-size: 13px;
    cursor: default;
    color: var(--text-primary, #fff);
}


button.list-group-item,
button.list-group-item-action {
    color: var(--text-primary, #fff);
    background: var(--surface-primary, #1A1A1A);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
}


@media (min-width: 992px) {

}


@media (max-width: 991.98px) {

}


.p-0 {
    padding: 0 !important;
}


.mb-0 {
    margin-bottom: 0 !important;
}


.mb-1 {
    margin-bottom: 4px !important;
}


.mb-2 {
    margin-bottom: 8px !important;
}


.mb-3 {
    margin-bottom: 12px !important;
}


@media (min-width: 992px) {

}


.dropdown-item {
    display: block;
    padding: 8px 12px;
    color: var(--text-primary, #fff);
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    max-width: 100%;
    text-align: left;
    box-sizing: border-box;
}


.dropdown-item:hover {
    background: var(--surface-hover, #2E2E2E);
}


.dropdown-item > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.dropdown-item.d-flex {
    display: flex !important;
    align-items: center;
    max-width: 100%;
}


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


.text-success {
    color: var(--success, #4caf50) !important;
}


.text-danger {
    color: var(--danger, #f44336) !important;
}


.text-muted {
    color: var(--text-muted, #606060) !important;
}


.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.text-center {
    text-align: center !important;
}


.text-end {
    text-align: right !important;
}


.small, .fs-small {
    font-size: 12px !important;
}


.fw-bold {
    font-weight: 700 !important;
}


.fw-semibold {
    font-weight: 600 !important;
}


.border {
    border: 1px solid var(--border-default, #3A3A3A) !important;
}


.border-bottom {
    border-bottom: 1px solid var(--border-default, #3A3A3A) !important;
}


.border-start {
    border-left: 1px solid var(--border-default, #3A3A3A) !important;
}


.overflow-auto {
    overflow: auto !important;
}


.overflow-hidden {
    overflow: hidden !important;
}


.sticky-top {
    position: sticky;
    top: 0;
    z-index: 10;
}


.rounded {
    border-radius: 4px !important;
}


@media (min-width: 576px) {

}


@media (min-width: 768px) {


    .col-md-4 {
        flex: 0 0 33.333333%;
    }


    .col-md-6 {
        flex: 0 0 50%;
    }


    .col-md-8 {
        flex: 0 0 66.666667%;
    }
}


@media (min-width: 992px) {

}


@media (min-width: 1200px) {


    .col-xl-4 {
        flex: 0 0 33.333333%;
    }
}


.alert {
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
}


.alert-danger {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #ff5252;
}


.alert-info {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
    color: #42a5f5;
}


.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.table-sm th,
.table-sm td {
    padding: 4px 10px;
    font-size: 12px;
}


.align-middle {
    vertical-align: middle !important;
}


.dropdown-divider {
    height: 0;
    margin: 4px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-default, #3A3A3A);
}


.dropdown-item-text {
    display: block;
    padding: 8px 12px;
    color: var(--text-muted, #606060);
    font-size: 13px;
}


.dropdown-item.disabled,
.dropdown-item:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}


.d-flex.show {
    display: flex !important;
}


.list-group-flush {
    display: flex;
    flex-direction: column;
}


.list-group-flush > .list-group-item {
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid var(--border-subtle, #2A2A2A);
}


.list-group-flush > .list-group-item:last-child {
    border-bottom: none;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}