/* Styling and animations for the "no news" message */

.no_news_container {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2, #80deea);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    animation: pulse 3s infinite alternate;
}

.no_news_icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #0049a8;
    animation: bounce 2s infinite;
}

.no_news_message {
    font-size: 24px;
    font-weight: 500;
    color: #0049a8;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-in;
}

.no_news_subtext {
    font-size: 16px;
    color: #0049a8;
    margin-bottom: 25px;
    animation: fadeIn 1.5s ease-in;
}

.no_news_button {
    background-color: #0049a8;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease-in;
}

.no_news_button:hover {
    background-color: #003c8a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 73, 168, 0.3);
}

/* Bubble animations in background */
.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.bubble:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

/* Keyframe Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 15px 35px rgba(0, 73, 168, 0.2);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .no_news_container {
        padding: 30px 20px;
        margin: 20px auto;
    }
    
    .no_news_icon {
        font-size: 50px;
    }
    
    .no_news_message {
        font-size: 20px;
    }
    
    .no_news_subtext {
        font-size: 14px;
    }
}
