/* Extracted from layouts/partials/head-css.blade.php (block 1) */
body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    .card-header>.card-title {
      text-transform: uppercase !important;
    }

    .table thead tr th {
      background-color: var(--primary) !important;
      color: var(--primary-hover);
    }
    .badge-new {
    background: #ff4d4f;   /* mau do noi bat */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 6px;
}
.contact-float {
    position: fixed;
    right: 22px;
    bottom: 92px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    z-index: 1055;
    animation: contactStackIn .45s ease-out both;
}

.contact-btn {
    --contact-a: #2aabee;
    --contact-b: #229ed9;
    --contact-ring: rgba(42, 171, 238, .26);
    position: relative;
    isolation: isolate;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 30%),
        linear-gradient(135deg, var(--contact-a), var(--contact-b));
    box-shadow: 0 14px 30px rgba(15, 23, 42, .22), inset 0 1px 0 rgba(255, 255, 255, .42);
    transform: translateZ(0);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    animation: contactFloat 3.4s ease-in-out infinite;
    animation-delay: var(--contact-delay, 0s);
}

.contact-btn::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0 68%, rgba(255, 255, 255, .82), transparent 88%);
    opacity: .7;
    z-index: -2;
    animation: contactOrbit 3.2s linear infinite;
}

.contact-btn::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    background: var(--contact-ring);
    z-index: -3;
    opacity: 0;
    transform: scale(.78);
    animation: contactPulse 2.6s ease-out infinite;
    animation-delay: var(--contact-delay, 0s);
}

.contact-btn.telegram {
    --contact-a: #2db7f5;
    --contact-b: #168fd8;
    --contact-ring: rgba(45, 183, 245, .25);
    --contact-delay: 0s;
}

.contact-btn.facebook {
    --contact-a: #2f8cff;
    --contact-b: #1557c0;
    --contact-ring: rgba(24, 119, 242, .24);
    --contact-delay: .18s;
}

.contact-btn.phone {
    --contact-a: #34d67a;
    --contact-b: #129e52;
    --contact-ring: rgba(37, 211, 102, .26);
    --contact-delay: .36s;
}

.contact-svg {
    width: 29px;
    height: 29px;
    display: block;
    color: #fff;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .2));
    transform-origin: center;
    transition: transform .25s ease;
}

.contact-btn.facebook .contact-svg {
    width: 31px;
    height: 31px;
}

.contact-btn.phone .contact-svg {
    width: 30px;
    height: 30px;
}

.contact-btn:hover,
.contact-btn:focus-visible {
    color: #fff;
    transform: translateY(-5px) scale(1.08);
    filter: saturate(1.08);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .32), inset 0 1px 0 rgba(255, 255, 255, .52);
    outline: 0;
    animation: none;
}

.contact-btn:hover .contact-svg,
.contact-btn:focus-visible .contact-svg {
    animation: contactIconPop .58s ease;
}

@keyframes contactStackIn {
    from { opacity: 0; transform: translate3d(18px, 18px, 0) scale(.92); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes contactOrbit {
    to { transform: rotate(360deg); }
}

@keyframes contactPulse {
    0% { opacity: .68; transform: scale(.76); }
    70%, 100% { opacity: 0; transform: scale(1.38); }
}

@keyframes contactIconPop {
    0% { transform: scale(1) rotate(0deg); }
    35% { transform: scale(1.16) rotate(-8deg); }
    70% { transform: scale(.96) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@media (max-width: 768px) {
    .contact-float {
        right: 16px;
        bottom: 78px;
        gap: 11px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
    }

    .contact-svg {
        width: 27px;
        height: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-float,
    .contact-btn,
    .contact-btn::before,
    .contact-btn::after,
    .contact-btn:hover .contact-svg,
    .contact-btn:focus-visible .contact-svg {
        animation: none;
    }
}
.balance-link{
    display:flex !important;
    align-items:center;
    gap:6px;
    height:42px;
    padding:0 8px !important;
    width:auto !important;
    white-space:nowrap;
}

.balance-link .header-link-icon{
    margin:0;
    font-size:18px;
}

.balance-amount{
    font-size:16px;
    font-weight:600;
    line-height:1;
}

@media(max-width:992px){
    .balance-amount{
        display:none;
    }

    .balance-link{
        padding:0 !important;
        justify-content:center;
        width:42px !important;
    }
}
.balance-link{
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: 0 !important;

    display: flex !important;
    align-items: center;
    gap: 6px;
    width: auto !important;
    min-width: auto !important;
    height: auto !important;
    padding: 0 6px !important;
}
