
input[name="sa"] {
    width: 40px!important;
         /* Optional: Removes border if present */
}
.da-header .col-body .notifications-btn a.newNotifications {
    position: relative;
}
.pageWrap header .logo img{max-width: 125px;}
.da-header .col-body .notifications-btn a.newNotifications::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #1ca1d6;
    border-radius: 8px;
    position: absolute;
    top: 8px;
    right: 10px;
    display: none; /* Initially hidden */
}

.da-header .col-body .notifications-btn a.newNotifications.has-unread::before {
    display: block; /* Show when there are unread notifications */
}

