/* Styles for the footer copyright and credit line */
.dd-footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.dd-footer-line .dd-copyright-text,
.dd-footer-line .dd-by-text {
    white-space: nowrap;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .dd-footer-line {
        flex-direction: column;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .dd-footer-line .dd-copyright-text,
    .dd-footer-line .dd-by-text {
        white-space: normal;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}