 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background-color: #f4f7f6;
 }

 .floating-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 48px;
     background-color: #3b82f6;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 4px;
     overflow: hidden;
     z-index: 50;
     text-decoration: none;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 .banner-text {
     font-size: 1.125rem;
     font-weight: 600;
     color: #fff;
     text-align: center;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
 }







 .navbar {
     background-color: #fbfbfb !important;
 }


