:root {
    --lk-bg: #ffffff;
    --lk-bg-soft: #ffffff;
    --lk-surface: #ffffff;
    --lk-surface-strong: #ffffff;
    --lk-border: #d7e3ff;
    --lk-text: #0f172a;
    --lk-muted: #64748b;
    --lk-primary: #2563eb;
    --lk-primary-strong: #1e40af;
    --lk-accent: #0ea5e9;
    --lk-success: #0f9f6e;
    --lk-danger: #dc2626;
    --lk-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
    --lk-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --lk-radius-xl: 24px;
    --lk-radius-lg: 18px;
    --lk-radius-md: 14px;
    --lk-radius-sm: 10px;
}

body.modern-site {
    background: #ffffff;
    color: var(--lk-text);
    min-height: 100vh;
    padding: 8px;
}

body.modern-site a {
    transition: all 0.2s ease;
}

.modern-shell {
    width: min(1940px, calc(100% - 4px));
    margin: 0 auto;
}

.modern-shell__body {
    position: relative;
}

.modern-shell__body::after {
    content: "";
    display: block;
    clear: both;
}

.modern-shell__body .col-l {
    width: 23%;
    max-width: 320px;
    padding-right: 8px;
}

.modern-shell__body .col-r {
    width: 77%;
    padding-left: 8px;
}

.modern-topbar {
    margin-bottom: 18px;
    background: transparent;
    border: 0;
}

.modern-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--lk-radius-xl);
    border: 1px solid var(--lk-border);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    box-shadow: var(--lk-shadow-soft);
}

.modern-topbar__brand {
    flex: 0 0 auto;
}

.modern-topbar__brand .logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 6px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.modern-topbar__brand img {
    height: 42px;
    width: auto;
}

.modern-topbar__actions {
    flex: 1;
}

.modern-topbar .menu-acc {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.modern-topbar .menu-acc form {
    margin: 0;
}

.modern-topbar .menu-acc .modern-pill,
.modern-topbar .menu-acc .modern-pill:visited,
.modern-topbar .menu-acc .modern-pill:hover,
.modern-topbar .menu-acc button.modern-pill {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2);
}

.modern-topbar .menu-acc .modern-pill--outline {
    background: #fff;
    color: var(--lk-primary);
    border: 1px solid rgba(37, 99, 235, 0.24);
    box-shadow: none;
}

.modern-topbar .menu-acc .modern-pill--primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.modern-topbar .menu-acc .modern-pill--success {
    background: linear-gradient(135deg, #0f9f6e 0%, #059669 100%);
}

.modern-topbar .menu-acc .modern-pill--info {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.modern-topbar .menu-acc .modern-pill--danger {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.modern-topbar .menu-acc .modern-pill:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

#sidebar {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: var(--lk-radius-xl);
    padding: 10px 0 16px;
    box-shadow: var(--lk-shadow-soft);
}

.sidebar-logo {
    padding: 8px 16px 14px;
    border-bottom: 1px solid #e5edff;
    margin-bottom: 8px;
    text-align: center;
}

.sidebar-logo .logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    padding: 6px;
}

.sidebar-logo img {
    max-height: 52px;
    width: auto;
}

.sidebar-summary {
    padding: 12px 16px;
}

.sidebar-user-card {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #e5d7bd;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #fff8ea 100%);
}

.sidebar-user-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 9px;
}

.sidebar-user-link,
.sidebar-user-link:visited,
.sidebar-user-level,
.sidebar-user-level:visited {
    color: #0f172a;
    text-decoration: none;
}

.sidebar-user-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.sidebar-user-greet {
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.sidebar-user-name {
    margin-top: 2px;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-user-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid #f2d18b;
    background: #fff3d2;
    color: #8a5b00;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.sidebar-user-level {
    font-size: 11px;
    color: #4b5563;
    opacity: 1;
}

.sidebar-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
    padding: 7px 9px;
    border: 1px solid #dbe7ff;
    border-radius: 10px;
    background: #f8fbff;
}

.sidebar-balance__label {
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

.sidebar-balance__value {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #166534;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.sidebar-balance__value i {
    color: #059669;
    font-size: 12px;
}

.sidebar-account-btn,
.sidebar-account-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #bfd8ff;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-account-btn:hover {
    color: #1e3a8a;
    border-color: #93c5fd;
    background: #dbeafe;
}

.menu-icon {
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sidebar-auth-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 10px;
}

@media (max-width: 480px) {
    .sidebar-user-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar-account-btn,
    .sidebar-account-btn:visited {
        width: 100%;
    }
}

/* .sidebar-auth-btn,
.sidebar-auth-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #dbe7ff;
    background: #f8fbff;
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
} */

.sidebar-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #dbe7ff;
    background: #f8fbff;
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.sidebar-auth-btn:hover {
    background: #e8f1ff;
    color: #0f172a;
}

.sidebar-auth-btn--login {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.sidebar-auth-btn--register {
    border-color: #bbf7d0;
    background: #ecfdf5;
    color: #047857;
}

#menu-side {
    padding: 0 8px;
}

#sidebarnav {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 5px;
}

#sidebarnav>li {
    margin-bottom: 8px;
}

#sidebarnav>li>a,
#sidebarnav .menu-toggle1 {
    background: #f8fbff;
    color: #111827;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: 1px solid #dbe7ff;
    border-radius: var(--lk-radius-md);
    padding: 9px 12px;
    line-height: 1.35;
}

#sidebarnav>li>a:hover,
#sidebarnav>li.active>a,
#sidebarnav .menu-toggle1:hover {
    background: #e8f1ff;
    color: #0f172a !important;
}

#sidebarnav>li>.menu-toggle.expanded {
    background: #e3edff;
    color: #0f172a !important;
}

#sidebarnav ul {
    margin-top: 8px;
    padding-left: 0;
    display: block;
}

#sidebarnav .show-hidemenu,
#sidebarnav .show-hidemenu1 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--lk-radius-md);
    padding: 6px;
}

#sidebarnav ul li {
    list-style: none;
}

#sidebarnav ul a {
    color: #1f2937;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#sidebarnav ul a i,
#sidebarnav ul a img {
    flex-shrink: 0;
}

#sidebarnav ul a:hover,
#sidebarnav ul li.active>a {
    color: #0f172a !important;
    background: #e8f1ff;
}

#sidebarnav .lable-price {
    float: none;
    margin-left: auto;
    color: #5f5000;
    font-weight: 700;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid #e2cb00;
    background: #fce100;
    white-space: nowrap;
}

#sidebarnav .menu-toggle>i {
    top: 12px;
}

#sidebarnav .menu-toggle,
#sidebarnav .menu-toggle1 {
    cursor: pointer;
}

.modern-content-column {
    overflow: visible;
    min-height: 1px;
}

.modern-content-column>.theiaStickySidebar {
    padding: 0;
}

.main-body {
    background: var(--lk-surface);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius-xl);
    box-shadow: var(--lk-shadow-soft);
    padding: 20px;
}

.footer.modern-footer {
    margin-top: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: var(--lk-radius-xl);
    background: linear-gradient(90deg, #e6e7e9 0%, #e1e1e1 100%);
    color: #cbd5e1;
    box-shadow: var(--lk-shadow-soft);
}

.modern-footer a,
.modern-footer a:visited {
    color: #f8fafc;
    text-decoration: none;
}

.modern-footer a:hover {
    color: #bfdbfe;
}

.modern-floating-actions {
    position: fixed;
    right: 14px;
    bottom: 12px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.btn-support {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-support:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-support--deposit {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
}

.btn-thongbao {
    right: 14px;
    bottom: 72px;
}

.btn-thongbao a {
    border-radius: 999px;
    border: 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.28);
}

.tagline,
.box,
.box-dv,
.box-dv1,
.box-box,
.bgeee,
.sdesc,
.tab-content.current,
.box-news-home,
.service_info li,
.main-content,
.page-content img,
.table-tiket tr,
.box-nap,
.box-shadow {
    border-radius: var(--lk-radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.bgeee,
.sdesc,
.tab-content.current,
.box-news-home,
.box-nap,
.table-tiket tr {
    background: #ffffff;
}

.alert:not(.alert-danger):not(.alert-success):not(.alert-warning):not(.alert-info) {
    background: #ffffff;
    color: var(--lk-text);
}

/* Keep contextual Bootstrap alert colors */
.alert-danger {
    border-radius: 12px;
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.alert-success {
    border-radius: 12px;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-warning {
    border-radius: 12px;
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.alert-info {
    border-radius: 12px;
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

/* Package info (Thong tin goi) */
.package-info-panel {
    padding: 16px;
    border: 1px solid #e8dcc4;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(254, 243, 199, 0.35) 0%, rgba(254, 243, 199, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
    font-size: 13px;
    line-height: 1.55;
    color: #44403c;
}

.package-info-panel>.bold.font16.text-uppercase,
.package-info-panel .bold.font16.text-uppercase.mtop20 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: none;
    color: #1f2937;
}

.package-info-panel>.bold.font16.text-uppercase i,
.package-info-panel .bold.font16.text-uppercase.mtop20 i {
    color: #d97706;
}

.package-info-panel .package-info-body>.italic {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #f0e2c5;
    background: #fff7e8;
    color: #6b7280;
}

.package-info-panel .box-goi {
    position: relative;
    margin: 16px 0 0;
    padding: 15px 14px 13px 16px;
    border: 1px solid #ecdcbc;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #fff8ed 100%);
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
    overflow: hidden;
}

.package-info-panel .box-goi::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f59e0b 0%, #f97316 100%);
}

.package-info-panel .box-goi>div:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    padding-bottom: 9px;
    border-bottom: 1px dashed #e4d2ad;
    color: #1f2937;
    line-height: 1.4;
}

.package-info-panel .box-goi strong.red {
    flex: 1 1 100%;
    color: #9a3412 !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.package-info-panel .box-goi>div:first-child>strong:not(.red) {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #f5d28f;
    background: #fff2d8;
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
}

.package-info-panel .box-goi>div:first-child>.font12 {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: #efe9db;
    color: #57534e;
    font-weight: 600;
    font-size: 11px;
}

.package-info-panel .box-goi p {
    margin-bottom: 6px;
    padding: 8px 10px;
    border-radius: 11px;
    border: 1px solid #f1e7d5;
    background: #ffffff;
    color: #57534e;
}

.package-info-panel .box-goi p span:first-child {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    margin-right: 4px;
    border-radius: 999px;
    background: #f8e9ca;
    color: #7c2d12;
    font-weight: 700;
    font-size: 11px;
}

.package-info-panel .box-goi .font12 {
    color: #57534e;
}

.package-info-panel .lable-small {
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 10px;
}

.package-info-panel .label-success.lable-small {
    border: 1px solid #86efac;
    background: #ecfdf3;
    color: #166534;
}

.package-info-panel .label-warning.lable-small {
    border: 1px solid #f5d28f;
    background: #fff7e6;
    color: #92400e;
}

.package-info-panel .package-note-list {
    margin-top: 16px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #efdfbf;
    background: linear-gradient(180deg, #fffcf5 0%, #fff8ec 100%);
}

.package-info-panel .package-note-list>p {
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #f2e7d2;
    background: #ffffff;
}

.package-info-panel .bold.font16.text-uppercase.mtop20+p {
    margin-top: 10px;
}

.package-info-panel .bold.font16.text-uppercase.mtop20~p {
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #f2e7d2;
    background: #ffffff;
}

.package-info-panel .alert.alert-danger {
    border-radius: 12px;
    margin-bottom: 0;
    padding: 12px 14px;
    box-shadow: none;
}

.package-info-panel a {
    color: #92400e;
    font-weight: 600;
}

.package-info-panel a:hover {
    color: #7c2d12;
}

/* Service cards redesign (guest/home section) */
#service-card-most-used-services .home-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 14px;
    color: #1f2937 !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.1px;
    text-transform: none;
}

#service-card-most-used-services .home-title::before {
    content: "";
    width: 8px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #dbc28f 0%, #bfa06a 100%);
}

#service-card-most-used-services .home-title>i {
    flex-shrink: 0;
}

#service-card-most-used-services .home-title.home-title--facebook::before {
    display: none;
}

#service-card-most-used-services .home-title.home-title--facebook i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f6efe1;
    color: #8a6b39;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}

#service-card-most-used-services .home-title+div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 4px 0 2px !important;
    margin-top: 0 !important;
    background: transparent !important;
}

#service-card-most-used-services .paddingrr {
    float: none;
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

#service-card-most-used-services .box-dv1 {
    position: relative;
    display: block;
    width: 100%;
    min-height: 156px;
    margin-bottom: 0;
    border-radius: 18px;
    border: 1px solid #e6e0d4;
    background: linear-gradient(180deg, #ffffff 0%, #fcfaf5 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    padding: 14px 14px 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#service-card-most-used-services .box-dv1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #dbc28f 0%, #c4a670 50%, #f3e8cb 100%);
    pointer-events: none;
}

#service-card-most-used-services .box-dv1::after {
    content: "";
    position: absolute;
    right: -26px;
    top: -28px;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(191, 160, 106, 0.18) 0%, rgba(191, 160, 106, 0) 70%);
    pointer-events: none;
}

#service-card-most-used-services .box-dv1:hover {
    transform: translateY(-3px);
    border-color: #d3c6ab;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

#service-card-most-used-services .box-dv1 .left {
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 0;
    margin-bottom: 12px;
    background: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#service-card-most-used-services .box-dv1 .left a {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #e4d4b5;
    background: linear-gradient(180deg, #f8f1e5 0%, #f5ecdc 100%);
    color: #8a6b39;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

#service-card-most-used-services .box-dv1 .left i {
    color: #8a6b39 !important;
}

#service-card-most-used-services .box-dv1 .right {
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.42;
}

#service-card-most-used-services .box-dv1 .right .title {
    border-bottom: 0 !important;
    margin: 0 0 6px;
    padding: 0;
}

#service-card-most-used-services .box-dv1 .right .title a {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#service-card-most-used-services .box-dv1 .right>div>div:last-child {
    color: #6b7280;
    font-weight: 500;
}

#service-card-most-used-services .box-dv1 .yellow {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid #dfc28f;
    color: #7a5a27;
    background: #f8f0e1;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
}

#service-card-most-used-services .box-dv1 .left i.orange {
    color: #8a6b39 !important;
}

#service-card-most-used-services .box-dv1 .left i.violet {
    color: #8a6b39 !important;
}

#service-card-most-used-services .box-dv1 .left i.pink {
    color: #8a6b39 !important;
}

#service-card-most-used-services .box-dv1 .left i.red {
    color: #8a6b39 !important;
}

#service-card-most-used-services .box-dv1:hover .right .title a {
    color: #7a5a27;
}

#service-card-most-used-services .box-dv1:hover .left a {
    border-color: #d2be93;
    background: #f4ead7;
}

#service-card-most-used-services .box-dv1:hover .left i {
    color: #7a5a27 !important;
}

#service-card-most-used-services .box-dv1:hover .left i.orange {
    color: #7a5a27 !important;
}

#service-card-most-used-services .box-dv1:hover .left i.violet {
    color: #7a5a27 !important;
}

#service-card-most-used-services .box-dv1:hover .left i.pink {
    color: #7a5a27 !important;
}

#service-card-most-used-services .box-dv1:hover .left i.red {
    color: #7a5a27 !important;
}

.breadcrumb {
    margin-top: 0;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: var(--lk-radius-md);
    background: #ffffff;
    border: 1px solid var(--lk-border);
}

.breadcrumb a {
    color: var(--lk-primary-strong);
    font-weight: 600;
    font-size: 14px;
}

.form-control,
input[type='search'],
input[type='text'],
input[type='number'],
input[type='password'],
input[type='email'],
select,
textarea,
.chosen-container-single .chosen-single {
    border-radius: 12px;
    border: 1px solid #c9d9ff;
    box-shadow: none;
    font-size: 14px;
    min-height: 42px;
}

#tab-create .form-group>label,
#tab-create label.hidden1 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    color: #0f172a;
    margin-bottom: 8px;
}

#tab-create .form-control:not(.btn),
#tab-create select,
#tab-create textarea,
#tab-create .chosen-container-single .chosen-single,
#tab-create .chosen-container-single .chosen-single span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

#tab-create .form-control.btn,
#tab-history .form-control.btn,
.main-body button.form-control.btn.btn-primary,
.main-body button.form-control.btn.btn-primary:hover,
.main-body button.form-control.btn.btn-primary:focus,
.main-body button.form-control.btn.btn-primary:active,
.main-body button.btn.btn-primary.mt-4,
.main-body button.btn.btn-primary.mt-4:hover,
.main-body button.btn.btn-primary.mt-4:focus,
.main-body button.btn.btn-primary.mt-4:active,
.main-body button.btn.btn-info[type='submit'],
.main-body button.btn.btn-info[type='submit']:hover,
.main-body button.btn.btn-info[type='submit']:focus,
.main-body button.btn.btn-info[type='submit']:active {
    color: #ffffff !important;
}

#tab-create label[class^='reaction_'],
#tab-create label[class*=' reaction_'] {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

textarea.form-control {
    min-height: 130px;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus,
.chosen-container-active .chosen-single {
    border-color: #60a5fa;
    box-shadow: 0 0 0 0.25rem rgba(96, 165, 250, 0.2);
}

.btn,
a.btn,
.button-dk,
.btn-reg,
.btn-dk,
.btn-ticket,
.btn-submit-ticket,
.btn-small,
.btn-normal,
#btn_check,
#btn_check1,
.box-box .btnmua,
.box-box .btnxem,
.btn-more,
.box-mua {
    border: 0;
    border-radius: 12px;
    border-bottom: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.22);
}

.btn:hover,
a.btn:hover,
.button-dk:hover,
.btn-reg:hover,
.btn-dk:hover,
.btn-ticket:hover,
.btn-submit-ticket:hover,
#btn_check:hover,
#btn_check1:hover,
.box-box .btnmua:hover,
.box-mua:hover {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.box-box .btnxem {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 18px rgba(245, 158, 11, 0.22);
}

/* Keep order status colors close to Bootstrap defaults. */
.table td .btn.btn-warning,
.table .btn.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    box-shadow: none !important;
}

.table td .btn.btn-success,
.table .btn.btn-success {
    background: #28a745 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.table td .btn.btn-danger,
.table .btn.btn-danger {
    background: #dc3545 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.table td .btn.btn-info,
.table .btn.btn-info {
    background: #17a2b8 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.table td .btn.btn-dark,
.table .btn.btn-dark {
    background: #343a40 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.tabs,
.tabs1 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

ul.tabs.tabs-order,
ul.tabs1.tabs-order {
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: stretch;
}

ul.tabs.tabs-order li,
ul.tabs1.tabs-order li {
    flex: 1 1 0;
    text-align: center;
    display: flex;
    align-items: stretch;
    padding: 0 !important;
}

ul.tabs.tabs-order li a,
ul.tabs1.tabs-order li a {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 42px;
    padding: 8px 14px;
}

ul.tabs li,
ul.tabs1 li,
ul.tabs li.current,
ul.tabs1 li.current,
ul.tabs li.current a,
ul.tabs1 li.current a {
    border-radius: 999px;
    border: 1px solid #c9d9ff;
    background: #eaf1ff;
    color: var(--lk-primary-strong);
    padding: 8px 14px;
}

ul.tabs li.current,
ul.tabs1 li.current,
ul.tabs li.current a,
ul.tabs1 li.current a {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: transparent;
    color: #fff;
}

.tab-link.current {
    padding: 10px !important;
}

.table,
.table-bordered,
.table-striped,
.table-tiket {
    border-radius: var(--lk-radius-md);
    overflow: hidden;
}

.table thead th,
.table th,
.table-bordered td,
.table-bordered th,
.table-tiket th,
.table-tiket td,
#table-vip th,
#table-vip td,
#table-vip1 th,
#table-vip1 td {
    border-color: #dbe4f2 !important;
}

.table-tiket tr,
.table-striped tbody tr:nth-of-type(odd) {
    background: #ffffff;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background: var(--lk-primary);
    border-color: var(--lk-primary);
}

.pagination>li>a,
.pagination>li>span {
    border-radius: 8px;
    margin: 0 3px;
}

#note,
.note-notification {
    border-radius: 12px;
    box-shadow: var(--lk-shadow-soft);
}

.notification-wrapper {
    top: 78px;
    right: 14px;
}

@media (max-width: 1299px) {
    .modern-shell__body .col-l {
        width: 25%;
        max-width: 300px;
    }

    .modern-shell__body .col-r {
        width: 75%;
    }
}

@media (max-width: 991px) {
    body.modern-site {
        padding: 4px;
    }

    .modern-topbar__inner {
        border-radius: 16px;
        padding: 10px 12px;
    }

    .modern-topbar__brand img {
        height: 38px;
    }

    .modern-topbar .menu-acc {
        justify-content: flex-start;
    }

    .modern-shell__body .col-l,
    .modern-shell__body .col-r {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .col-l {
        margin-bottom: 14px;
    }

    .menu-icon {
        display: block;
        float: none;
        margin: 0 0 8px;
        padding: 8px 0;
    }

    #menu-side {
        display: none;
        max-height: 60vh;
        overflow: auto;
        border-radius: 14px;
    }

    .main-body {
        padding: 14px;
    }

    .btn-thongbao {
        left: 10px;
        right: auto;
        bottom: 10px;
    }

    .modern-floating-actions {
        right: 10px;
        bottom: 10px;
    }

    .btn-support,
    .btn-thongbao a {
        padding: 10px 12px;
        font-size: 12px;
    }

    .table-responsive {
        border-radius: 12px;
    }

    .package-info-panel {
        padding: 12px 13px;
    }

    .package-info-panel .box-goi {
        padding: 12px 11px 10px 13px;
        border-radius: 14px;
    }

    .package-info-panel .box-goi strong.red {
        font-size: 14px;
    }

    .package-info-panel .box-goi>div:first-child>strong:not(.red),
    .package-info-panel .box-goi>div:first-child>.font12 {
        font-size: 10px;
        padding: 2px 8px;
    }

    .package-info-panel .box-goi p {
        padding: 6px 8px;
    }

    #service-card-most-used-services .home-title {
        font-size: 19px;
    }

    #service-card-most-used-services .paddingrr {
        margin-bottom: 0;
    }

    #service-card-most-used-services .home-title+div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    #service-card-most-used-services .box-dv1 {
        min-height: 144px;
        border-radius: 16px;
    }

    #service-card-most-used-services .box-dv1 .left {
        margin-bottom: 10px;
    }

    #service-card-most-used-services .box-dv1 .left a {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        font-size: 18px;
    }

    #service-card-most-used-services .box-dv1 .right {
        max-width: 100%;
        padding: 0;
    }

    #service-card-most-used-services .box-dv1 .right .title a {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .modern-topbar .menu-acc {
        gap: 8px;
    }

    .modern-topbar .menu-acc .modern-pill,
    .modern-topbar .menu-acc button.modern-pill {
        padding: 8px 12px;
        font-size: 12px;
    }

    .modern-topbar__brand {
        width: 100%;
    }

    .modern-topbar__actions {
        width: 100%;
    }

    .main-body {
        border-radius: 16px;
    }

    .sidebar-auth-quick {
        grid-template-columns: 1fr;
    }

    .sidebar-auth-btn,
    .sidebar-auth-btn:visited {
        font-size: 11px;
        padding: 8px 10px;
    }

    .package-info-panel {
        padding: 11px;
        border-radius: 14px;
        font-size: 12px;
    }

    .package-info-panel>.bold.font16.text-uppercase,
    .package-info-panel .bold.font16.text-uppercase.mtop20 {
        font-size: 14px;
    }

    .package-info-panel .box-goi {
        padding: 10px;
        border-radius: 12px;
    }

    .package-info-panel .box-goi>div:first-child {
        margin-bottom: 6px;
        padding-bottom: 6px;
    }

    .package-info-panel .box-goi strong.red {
        font-size: 13px;
    }

    .package-info-panel .box-goi>div:first-child>strong:not(.red),
    .package-info-panel .box-goi>div:first-child>.font12 {
        font-size: 10px;
        padding: 2px 7px;
    }

    .package-info-panel .box-goi p {
        padding: 6px 7px;
        border-radius: 9px;
    }

    .package-info-panel .box-goi p span:first-child {
        font-size: 10px;
        padding: 1px 6px;
    }

    #service-card-most-used-services .home-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    #service-card-most-used-services .home-title::before {
        width: 6px;
        height: 18px;
    }

    #service-card-most-used-services .home-title.home-title--facebook i {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    #service-card-most-used-services .home-title+div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #service-card-most-used-services .box-dv1 {
        min-height: 128px;
        border-radius: 14px;
        padding: 11px 11px 10px;
    }

    #service-card-most-used-services .box-dv1 .left {
        margin-bottom: 8px;
        padding: 0;
    }

    #service-card-most-used-services .box-dv1 .left a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 16px;
    }

    #service-card-most-used-services .box-dv1 .right {
        max-width: 100%;
        padding: 0;
        font-size: 12px;
        line-height: 1.35;
    }

    #service-card-most-used-services .box-dv1 .right .title {
        margin-bottom: 4px;
    }

    #service-card-most-used-services .box-dv1 .right .title a {
        font-size: 13px;
    }

    #service-card-most-used-services .box-dv1 .yellow {
        padding: 1px 7px;
        font-size: 10px;
    }
}