/* Smart App Banner Styles */
.smart-app-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--base-color);
    color: white;
    z-index: 9999;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

.smart-app-banner.show {
    display: block;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.smart-app-banner-container {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    max-width: 100%;
    margin: 0 auto;
    gap: 12px;
}

.smart-app-banner-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.smart-app-banner-icon img {
    width: 30px;
    height: 30px;
    border-radius: 10px;
}

.smart-app-banner-info {
    flex: 1;
    min-width: 0;
}

.smart-app-banner-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.smart-app-banner-subtitle {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
    color:  #333;
}

.smart-app-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.smart-app-banner-button {
    background: white;
    color:  #333;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.smart-app-banner-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.smart-app-banner-close {
    background: transparent;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.smart-app-banner-close:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .smart-app-banner-container {
        padding: 10px 12px;
    }

    .smart-app-banner-icon {
        width: 45px;
        height: 45px;
    }

    .smart-app-banner-icon img {
        width: 30px;
        height: 30px;
    }

    .smart-app-banner-title {
        font-size: 13px;
    }

    .smart-app-banner-subtitle {
        font-size: 11px;
    }

    .smart-app-banner-button {
        padding: 6px 14px;
        font-size: 12px;
    }
}
