/* Global Styles */
.floating-contact{position:fixed;right:20px;bottom:24px;z-index:60;display:flex;flex-direction:column;gap:12px}.floating-contact__button{width:54px;height:54px;border-radius:9999px;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(0,0,0,.25);transition:transform .2s ease,box-shadow .2s ease}.floating-contact__button:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 12px 30px rgba(0,0,0,.3)}.floating-contact__button--zalo{background:#0068ff;border:3px solid #fff;font-size:12px;font-weight:800}.floating-contact__button--phone{background:#16a34a;border:3px solid #fff;font-size:21px;animation:floating-phone-pulse 1.8s infinite}@keyframes floating-phone-pulse{0%,100%{box-shadow:0 0 0 0 rgba(22,163,74,.4),0 8px 24px rgba(0,0,0,.25)}50%{box-shadow:0 0 0 10px rgba(22,163,74,0),0 8px 24px rgba(0,0,0,.25)}}@media(max-width:640px){.floating-contact{right:14px;bottom:16px}.floating-contact__button{width:50px;height:50px}}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #D93025, #F97316);
    border-radius: 10px;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(to right, #D93025, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, #D93025 0%, #F97316 100%);
}

/* Notification Content Responsive Styles */
.notification-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.notification-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 1rem auto;
}

.notification-content table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.notification-content p,
.notification-content div,
.notification-content span {
    word-break: break-word;
}

/* Mobile specific */
@media (max-width: 640px) {
    .notification-content {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .notification-content h1,
    .notification-content h2,
    .notification-content h3 {
        font-size: 1.1em !important;
        line-height: 1.4;
    }
    
    .notification-content ul,
    .notification-content ol {
        padding-left: 1.25rem;
    }
}

