
.dng-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.dng-product__logo {
    width: 40px;
}

.dng-product {
    display: flex;
    flex-direction: row; /* Ensure items are on a single line */
    gap: 1.5rem; /* Set space between items */
    margin: 0 auto; /* Center the container horizontally */
}

.dng-product a {
    display: flex;
    align-items: center;
    min-width: 150px; /* Ensure flex items don't shrink below this width */
}

.dng-product__name {
    line-height: 1.2;
    overflow-wrap: normal; /* Prevent words from breaking */
}


.dng-copyright {
    font-size: 12px; /* Smaller font size for copyright */
    margin-top: 1rem; /* Space above the copyright text */
}