/* General styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #F9FAFB;
    overflow-x: hidden;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(45deg, #1E3A8A, #06B6D4);
    -webkit-background-clip: text;
    background-clip: text;
    color: #1E3A8A;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1E3A8A;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.preloader dotlottie-player {
    max-width: 100%;
    max-height: 100%;
    width: 120px;
    height: 120px;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

body.loading {
    overflow: hidden;
    pointer-events: none;
}

/* Parallax and dots overlay */
.parallax {
    background: url('https://images.pexels.com/photos/159298/pump-159298.jpeg?auto=compress&cs=tinysrgb&w=1920&format=webp') center/cover fixed;
    position: relative;
}

.dots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #F59E0B;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite, move 10s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50vw, 50vh);
    }
}

.dot:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 30%;
    left: 60%;
    animation-delay: 1s;
}

.dot:nth-child(3) {
    top: 50%;
    left: 30%;
    animation-delay: 2s;
}

.dot:nth-child(4) {
    top: 70%;
    left: 80%;
    animation-delay: 3s;
}

.dot:nth-child(5) {
    top: 20%;
    left: 40%;
    animation-delay: 4s;
}

@media (max-width: 639px) {
    .dot {
        display: none;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    transform: scale(0.9);
    opacity: 1;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 95vw;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1rem;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.tab-button {
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-button.active {
    background: linear-gradient(45deg, #1E3A8A, #06B6D4);
    color: white;
}

/* Gradient button */
.gradient-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    line-height: 1;
    text-align: center;
    min-height: 44px;
    background: linear-gradient(45deg, #1E3A8A, #06B6D4);
    color: white !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.875rem;
    font-family: 'Open Sans', sans-serif;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Loader */
.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.loader.active {
    display: flex;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #06B6D4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Wave dividers */
.wave-divider {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231E3A8A' d='M0,0 C360,50 1080,50 1440,0 V100 H0 Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}

.wave-divider-bottom {
    position: absolute;
    top: -1px;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231E3A8A' d='M0,100 C360,50 1080,50 1440,100 V0 H0 Z'/%3E%3C/svg%3E") center top / cover no-repeat;
}

/* Form styles */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-label {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -1rem;
    left: 0.5rem;
    font-size: 0.75rem;
    color: #F59E0B;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #06B6D4, #172554);
    color: #E5E7EB;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #F59E0B;
}

/* Navigation */
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav.scrolled .nav-links a {
    color: #1F2937;
}

nav.scrolled #more-button {
    color: #1F2937;
}

nav.scrolled #more-button svg {
    stroke: #1F2937;
}

/* Product card */
.product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    max-height: 600px;
    overflow: hidden;
    background: #ffffff;
}

.product-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    aspect-ratio: 4 / 3;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card p {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

.product-card button {
    margin-top: auto;
}

/* Carousels */
.product-range-carousel .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
}

.product-range-carousel .swiper-slide .product-card {
    width: 100%;
    max-width: 300px;
}

.clientele-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clientele-carousel .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clientele-carousel img {
    max-width: 160px;
    height: 80px;
    min-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.clientele-carousel img:hover {
    transform: scale(1.1);
}

.certificate-carousel .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-carousel .swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Masonry and distributor map */
.network-masonry {
    column-count: 2;
    column-gap: 1rem;
    margin: 0 auto;
}

.network-masonry .masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    width: 100%;
}

.network-masonry img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-masonry img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.distributor-map img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distributor-map img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Chatbot */
.chatbot-message {
    margin-bottom: 1rem;
}

.chatbot-response {
    max-width: 80%;
}

.chatbot-user {
    max-width: 80%;
    display: flex;
    justify-content: flex-end;
}

.chatbot-user div {
    background-color: #1E3A8A;
    color: white;
}

#chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

#chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#chatbot-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

#chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#chatbot-bubble {
    position: absolute;
    z-index: 40;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#chatbot-bubble.show {
    opacity: 1;
}

#chatbot-container {
    z-index: 50;
    width: 90vw;
    max-width: 400px;
    bottom: 1rem;
    right: 1rem;
}

@keyframes subtle-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.animate-pulse-subtle {
    animation: subtle-pulse 2s infinite;
}

/* Chemical Compatibility Page */
.rating-excellent {
    background-color: #10b981;
}

.rating-good {
    background-color: #3b82f6;
}

.rating-fair-to-poor {
    background-color: #f59e0b;
}

.rating-not-recommended {
    background-color: #ef4444;
}

.rating-no-data-available {
    background-color: #6b7280;
}

.table-container {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.chemical-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.chemical-select:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.rating-key-box {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.5rem;
    padding: 1rem;
}

.compatibility-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    table-layout: auto;
}

.compatibility-table th,
.compatibility-table td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    min-width: 100px;
}

.compatibility-table th {
    background: rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    font-family: 'Inter', sans-serif;
    font-weight:  explications
600;
}

.compatibility-table td.text-center {
    text-align: center;
}

.compatibility-table tr:hover {
    background: rgba(0, 0, 0, 0წ

System: The response was cut off. Here is the continuation and completion of the CSS code, along with explanations:

```css
/* Dropdown Styles */
#more-dropdown {
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

#more-dropdown.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

#more-button svg {
    transition: transform 0.3s ease;
}

#more-button.active svg {
    transform: rotate(180deg);
}

#more-dropdown-mobile {
    display blankly;
}

#more-dropdown-mobile.active {
    display: flex;
}

/* Dropdown Animation */
.dropdown-enter-active {
    transition: all 0.2s ease-out;
}

.dropdown-leave-active {
    transition: all 0.15s ease-in;
}

.dropdown-enter-from,
.dropdown-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

/* Navigation Link Transitions */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f59e0b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Styles */
#mobile-menu-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #F59E0B;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}

/* Responsive styles */
@media (max-width: 639px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-links-mobile {
        position: fixed;
        top: 4rem;
        right: 0;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 4rem);
        background: #1E40AF;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 2rem 0;
        z-index: 10;
        overflow-y: auto;
    }

    .nav-links-mobile.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-links-mobile a,
    .nav-links-mobile button {
        font-size: 1.125rem;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
        text-decoration: none;
    }

    .nav-links-mobile a:hover,
    .nav-links-mobile button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links-mobile a:focus,
    .nav-links-mobile button:focus {
        outline: 2px solid #F59E0B;
        outline-offset: 2px;
    }

    #more-dropdown-mobile {
        width: 100%;
    }

    #more-dropdown-mobile a {
        font-size: 1rem;
        border-bottom: none;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 0.875rem;
    }

    .hero-lottie {
        max-width: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-buttons a {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .modal-content {
        width: 90vw;
        padding: 1rem;
        max-height: 80vh;
    }

    .modal-image {
        max-height: 12rem;
    }

    .modal .tab-button {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .card {
        padding: 1rem;
        background: #ffffff;
    }

    .card img {
        height: 8rem;
    }

    .product-card {
        min-height: 300px;
    }

    .product-card img {
        height: 120px;
    }

    .clientele-carousel img {
        width: 80px;
        height: 40px;
    }

    .certificate-carousel .swiper-slide img {
        height: 160px;
    }

    .network-masonry {
        column-count: 1;
    }

    .chemical-compatibility-page .grid {
        display: block;
    }

    .chemical-compatibility-page .grid > div {
        margin-bottom: 1rem;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compatibility-table {
        min-width: 600px;
    }

    .compatibility-table th,
    .compatibility-table td {
        font-size: 0.75rem;
        padding: 0.5rem;
        min-width: 80px;
    }

    .chemical-select {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .rating-key-box {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-lottie {
        max-width: 150px;
    }

    .modal-content {
        width: 85vw;
        padding: 1.25rem;
    }

    .modal-image {
        max-height: 14rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .card {
        padding: 1.25rem;
        background: #ffffff;
    }

    .card img {
        height: 10rem;
    }

    .product-card {
        min-height: 350px;
    }

    .product-card img {
        height: 140px;
    }

    .clientele-carousel img {
        width: 100px;
        height: 50px;
    }

    .certificate-carousel .swiper-slide img {
        height: 200px;
    }

    .network-masonry {
        column-count: 2;
    }

    .chemical-compatibility-page .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compatibility-table th,
    .compatibility-table td {
        font-size: 0.875rem;
        padding: 0.625rem;
        min-width: 90px;
    }

    .chemical-select {
        font-size: 0.875rem;
        padding: 0.625rem;
    }

    .rating-key-box {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .hero-lottie {
        max-width: 200px;
    }

    .modal-content {
        width: 80vw;
        padding: 1.5rem;
    }

    .modal-image {
        max-height: 16rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .card {
        padding: 1.5rem;
        background: #ffffff;
    }

    .card img {
        height: 12rem;
    }

    .product-card {
        min-height: 380px;
    }

    .product-card img {
        height: 160px;
    }

    .clientele-carousel img {
        width: 120px;
        height: 60px;
    }

    .certificate-carousel .swiper-slide img {
        height: 240px;
    }

    .network-masonry {
        column-count: 3;
    }

    .chemical-compatibility-page .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-lottie {
        max-width: 250px;
    }

    .modal-content {
        width: 75vw;
        padding: 2rem;
    }

    .modal-image {
        max-height: 20rem;
    }

    .section-heading {
        font-size: 3rem;
    }

    .card {
        padding: 1.75rem;
        background: #ffffff;
    }

    .card img {
        height: 14rem;
    }

    .product-card {
        min-height: 400px;
    }

    .product-card img {
        height: 180px;
    }

    .clientele-carousel img {
        width: 140px;
        height: 70px;
    }

    .certificate-carousel .swiper-slide img {
        height: 280px;
    }

    .network-masonry {
        column-count: 4;
    }

    .chemical-compatibility-page .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-lottie {
        max-width: 300px;
    }

    .modal-content {
        width: 70vw;
        padding: 2rem;
    }

    .modal-image {
        max-height: 24rem;
    }

    .section-heading {
        font-size: 3.5rem;
    }

    .card {
        padding: 2rem;
        background: #ffffff;
    }

    .card img {
        height: 16rem;
    }

    .product-card {
        min-height: 420px;
    }

    .product-card img {
        height: 200px;
    }

    .clientele-carousel img {
        width: 160px;
        height: 80px;
    }

    .certificate-carousel .swiper-slide img {
        height: 300px;
    }

    .network-masonry {
        column-count: 4;
    }

    .chemical-compatibility-page .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 639px) {
    .compatibility-table {
        display: block; /* Convert table to block for custom layout */
    }

    .compatibility-table thead {
        display: none; /* Hide headers, as we'll show chemical names in cards */
    }

    .compatibility-table tbody,
    .compatibility-table tr {
        display: block;
    }

    .compatibility-table tr {
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        background: #ffffff;
    }

    .compatibility-table td {
        display: block;
        text-align: left;
        padding: 0.5rem;
        border: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .compatibility-table td:first-child {
        font-weight: 600;
        background: #f3f4f6;
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .compatibility-table td:not(:first-child)::before {
        content: attr(data-chemical) ": ";
        font-weight: 600;
        margin-right: 0.5rem;
    }
}