.notification-header {
    font-size: 14px;
    font-weight: bold;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #333;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
       padding: 0px 15px;
    font-size: 14px;
}

.header-row .header-date {
    flex-basis: 10%;
    text-align: left;
    padding: 4px 0px 4px 0px;
     border-right: 2px solid #ddd;
}

.header-row .header-subject {
    flex-basis: 90%;
    text-align: left;
    padding: 4px 0px 4px 10px;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;

}

.notification-date {
    flex-basis: 10%;
    font-size: 16px;
    color: #333;
      padding: 15px 0px 15px 0px;
     border-right: 2px solid #ddd;
}

.notifiaction_subject a {
    color: #007bff;
}

.notification-subject {
    flex-basis: 90%;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    position: relative;
     padding: 15px 0px 15px 10px;
}

.notification-subject:after {
    content: "";
    position: absolute;
    bottom: 0;
    /* Aligns the border to the bottom */
    left: 10px;
    /* Starts the border from the left */
    width: 30%;
    /* Sets the border width to 30% */
    border-bottom: 1px dotted #c5c1c1;
}
.new-animation {
    display: flex;
    font-size: 14px;
    /* Adjust text size */
    /* Adjust height as needed */
}

.new-letter {
    display: inline-block;
    color: #990001;
    font-size: 9px;
    font-weight: bold;
    gap: 0px;
    animation: bounce 2.5s ease-in-out infinite;
}

.new-letter:nth-child(1) {
    animation-delay: 0s;
    /* N starts first */
}

.new-letter:nth-child(2) {
    animation-delay: 0.4s;
    /* E starts after 0.2s */
}

.new-letter:nth-child(3) {
    animation-delay: 0.6s;
    /* W starts after 0.4s */
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        /* Initial and final position */
    }

    50% {
        transform: translateY(-10px);
        /* Move up */
    }
}

.item-new {
    background-color: #ffdf0036;
}

@media screen and (max-width: 768px) {
.header-row .header-date, .notification-date {
    flex-basis: 30%;
}
.header-row .header-subject, .notification-subject {
    flex-basis: 70%;
}
}

.notification-item a .second-subject {
    color: #0d6efd;
}

.notification-item a {
    color: #212529;
}

.notification-item a:hover {
    color: #212529;
}

.notification-item a:hover .second-subject {
    color: #990001;
}