@charset "UTF-8";
/* CSS Document */

 /* Logo Section */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.header-logo {
    flex: 0 0 auto;
    min-width: 0;    /* important for flex layouts */
    padding-left: 15px;
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
}

.header-logo img {
    height: 60px;
    width: auto;
}

@media (max-width: 480px) {
    .header-logo img {
        height: 60px;
    }
}