﻿/* Banner base */
#installBanner,
#installBannerIOS {
    position: fixed;
    bottom: 0;
    left: 10px;
    right: 10px;
    background-color: rgb(8, 110, 130, 0.6 );
    color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    padding: 1em;
    transition: transform 0.3s ease-in-out;
}

/* Contenido interno */
.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .banner-content .text {
        flex: 1;
        padding: 0 1em;
    }

    .banner-content .icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }

    .banner-content button {
        background-color: #ffffff;
        color: rgb(8, 110, 130, 1.0);
        border: none;
        padding: 0.5em 1em;
        border-radius: 5px;
        font-size: 1em;
        cursor: pointer;
        margin-left: 1em;
    }

/* Responsive ajustes para móviles/tablets */
@media (max-width: 960px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

        .banner-content .icon {
            margin-bottom: 0.5em;
        }

        .banner-content button {
            margin-top: 0.5em;
            width: 100%;
        }
}


