/* Notification Slider Styles - Marquee Effect */
.notification-slider {
    padding: 3px;
    background: var(--bg-great);
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.text-main {
    color: var(--text-great);
}

.notification-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.notification-slider .slick-list {
    overflow: hidden;
}

.notification-slider.marquee-slider.paused {
    animation-play-state: paused;
}

.notification-card {
    margin: 0 10px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    min-height: 80px;
    flex-shrink: 0;
    width: auto;
    position: relative;

    border: 1px solid transparent;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-image: linear-gradient(180deg, rgba(246, 140, 31, 0) 0%, #F68C1F 50%, rgba(246, 140, 31, 0) 100%) 1 stretch;
    padding: 0px 10px;
}

/*.notification-card::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 10%;*/
/*    bottom: 10%;*/
/*    width: 2px;*/
/*    margin-right: 10px;*/
/*    background: linear-gradient(180deg, rgba(246, 140, 31, 0) 0%, #F68C1F 50.48%, rgba(246, 140, 31, 0) 100%);*/
/*}*/

.notification-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-text-okwin);
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    white-space: normal;
}

.notification-text {
    color: var(--text-great);
    font-size: 12px;
    line-height: 1.4;
    max-width: 100%;
}

/* Responsive cho marquee */
@media only screen and (max-width: 1200px) {
    .notification-slider.marquee-slider {
        animation-duration: 12s;
    }
}

@media only screen and (max-width: 992px) {
    .notification-slider.marquee-slider {
        animation-duration: 10s;
    }
}

@media only screen and (max-width: 768px) {
    .notification-slider.marquee-slider {
        animation-duration: 8s;
    }
    .notification-card {
        min-height: 60px;
        gap: 4px;
        margin: 0px;

    }
    .notification-text {
        font-size: 10px;
    }
    .notification-avatar {
        width: 30px;
        height: 30px;
    }
    .notification-slider {
        padding: 0 0;
    }
    .notification-card::after {
        margin-right: 6px;
    }
}

@media only screen and (max-width: 576px) {
    .notification-slider.marquee-slider {
        animation-duration: 6s;
    }
}
