.swal2-confirm.swal2-styled {
    background: #2697ff !important;
}

#whatsNewBtn:hover {
    background-color: #1a7ddc;
}

/* Popover (Updates List) */
#whatsNewPopup {
    z-index: 1001;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    transform: translateY(-600px);
    opacity: 0;
    transition: all 0.8s;
}
.fadeAnimation {
    transform: translateY(0px) !important;
    transition-delay: 100ms !important;
    opacity: 1 !important;
}
.latest-news-box {
    right: 13px;   
}
.update-item {
    cursor: pointer;
}

.list-group-item {
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color: #f0f8ff; /* Example color for parent hover */
}

.list-group-item .update-item:hover {
    background-color: transparent; /* You can add any style to the second child hover */
}

.list-group-item .update-item:hover ~ .list-group-item {
    background-color: #dcdcdc; /* Change the background of the parent when the second child is hovered */
}

.what-new-heading {
    position: sticky;
    z-index: 1;
    background: #ffffffd9;
    width: 100%;
    top: 0;
    padding-top: 4px;
}

.what-new-close-btn {
    position: sticky;
    z-index: 1;
    width: 100%;
    bottom: 0;
}
#updatesList .list-group-item {
    transition: 0.5s all;
}
#updatesList .list-group-item:hover {
    transform: translateY(-2px);
}
@media only screen and (max-width:767px) {
    .latest-news-box {
        right: 0;
        margin: 0 auto;
        bottom: 0;
        left: 0;
        width: fit-content;   
    }
}
