.top-banner-container {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

#top-banner-module {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

#top-banner-module * {
    box-sizing: border-box;
}

/* Asegurar que esté por encima de todo */
body > .top-banner-container:first-child {
    position: relative;
    z-index: 1;
}

/* Estilos por defecto para el banner */
#top-banner-module .default-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

#top-banner-module .default-banner strong {
    font-weight: 600;
}

/* Evitar conflictos con el tema */
.top-banner-container {
    clear: both;
    float: none;
    display: block !important;
}

/* Responsive */
@media (max-width: 768px) {
    #top-banner-module {
        font-size: 90%;
    }

    #top-banner-module .default-banner {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #top-banner-module .default-banner {
        padding: 8px 10px;
        font-size: 11px;
    }
}
