.notifications-container {
    max-width: 1000px;
    margin: 80px auto auto auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.notification {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.notification:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.notification img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #ccc;
}
.notification-content {
    flex-grow: 1;
}
.notification-content h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}
.notification-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}
.notification-content .time {
    font-size: 12px;
    color: #999;
}
.load-more {
    text-align: center;
    margin-top: 20px;
}
.load-more a {
    color: #0073e6;
    text-decoration: none;
    font-size: 14px;
}

.time {
    text-align: end;
}


.notification_message_container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    list-style-type: none;
    font-size: 14px;
}

.notification_message {
    display: flex;
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space between text and image */
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative; /* For positioning the image */
}

.notification_message_container li button {
    width: 100%; /* Make the button fill the entire li */
    text-align: left; /* Align text to the left */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.notification_message_container li:last-child {
    border-bottom: none;
}
.notification_message_container li img {
    width: 24px;
    height: 24px;
    position: absolute; /* Position the image absolutely */
    right: 0; /* Place the image at the end of the li */
    top: 50%; /* Vertically center the image */
    transform: translateY(-50%); /* Adjust for perfect centering */
}
