/* Global Styles */

/* 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;
    }
}

