/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com/demo/
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/
/* Floating Urgency Message */
.floating-urgency-message {
    display: inline-block;
    position: relative;
    background: linear-gradient(90deg, #ffe066, #ffba08); /* Default gradient */
    color: #1b1b1b; /* Default text color */
    padding: 12px 18px;
    margin: 10px 0;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-left: 5px solid #ff6f00;
    text-align: center;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 400px;
}

/* Hover Animation */
.floating-urgency-message:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .floating-urgency-message {
        font-size: 0.95rem;
        padding: 10px 15px;
        max-width: 100%;
    }
}

