:root {
    --bs-primary: #2783de;
    --bs-primary-rgb: 39, 131, 222;
    --bs-link-color-rgb: 39, 131, 222;
    --bs-link-hover-color-rgb: 31, 108, 186;
}

body {
    background: #f7f7f6;
}

.btn-primary {
    --bs-btn-bg: #2783de;
    --bs-btn-border-color: #2783de;
    --bs-btn-hover-bg: #1f6cba;
    --bs-btn-hover-border-color: #1f6cba;
    --bs-btn-active-bg: #1f6cba;
    --bs-btn-active-border-color: #1f6cba;
    --bs-btn-disabled-bg: #2783de;
    --bs-btn-disabled-border-color: #2783de;
}

.bg-primary {
    background-color: #2783de !important;
}

.text-primary {
    color: #2783de !important;
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #2783de;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5f2fc;
    color: #2783de;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.admin-sidebar {
    width: 250px;
    min-height: 100vh;
}

.side-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem .8rem;
    border-radius: .6rem;
    color: #6c757d;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: .15rem;
}

.side-link:hover {
    background: #f4f4f3;
    color: #212529;
}

.side-link.active {
    background: #e5f2fc;
    color: #2783de;
}

.admin-topbar {
    height: 64px;
}

.prod-img {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f3f6fa, #e9eef5);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aab6c6;
    font-size: 2rem;
}

.product-card {
    transition: .15s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06) !important;
}

.timeline {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline li {
    position: relative;
    padding-left: 1.75rem;
    padding-bottom: 1.1rem;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: .34rem;
    top: .4rem;
    bottom: -.2rem;
    width: 2px;
    background: #e6e5e3;
}

.timeline li:last-child {
    padding-bottom: 0;
}

.timeline li:last-child::before {
    display: none;
}

.timeline li .tl-dot {
    position: absolute;
    left: 0;
    top: .2rem;
    width: .85rem;
    height: .85rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ced4da;
}

.timeline li.done .tl-dot {
    background: #46a171;
    border-color: #46a171;
}

.timeline li.active .tl-dot {
    background: #2783de;
    border-color: #2783de;
}